How to set a version of app as default on the new Google App Engine Dashboad

Viewed 4058

I have deployed multiple versions of my web app to Google App Engine. On the new Google App Engine Dashboard, I was unable to find where to set a version as the default version of the app. The old GAE console allows us to click the "Make Default" button but it disappears from the new Dashboard.

2 Answers

If you want to change it using the command line you can use gcloud:

gcloud app versions migrate VERSION [--service=SERVICE, -s SERVICE] [GCLOUD_WIDE_FLAG …]

See gcloud documentation.

Related