Skip to content

AppEngine Deployment

William Silversmith edited this page Aug 28, 2017 · 2 revisions

To deploy without waiting for travis to succeed:

gcloud app deploy app.yaml --version=$BRANCHNAME --no-promote

This will generate a URL like: https://wmsoauth2-dot-neuromancer-seung-import.appspot.com/ which is composed of the $BRANCHNAME-dot-$PROJECTNAME.appspot.com.

If you'd like to deploy directly to the master branch (which should not happen without exceptional circumstances because travis does it automatically), write:

gcloud app deploy app.yaml
Clone this wiki locally