Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(715)

Unified Diff: appengine/README.md

Issue 2952343003: Document a bit gae. (Closed)
Patch Set: Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: appengine/README.md
diff --git a/appengine/README.md b/appengine/README.md
index 4576dac906dda2fca0f2b13657f1e01749b2ef6a..3c2c993d35064f2cf3b3980252d59dff8229ad89 100644
--- a/appengine/README.md
+++ b/appengine/README.md
@@ -54,6 +54,34 @@ pushing a new version. Use `./tools/gae help` for an up to date list of commands
available.
+### Pushing
+
+Pushing new code to an AppEngine instance doesn't change the default version.
+
+To push a new version of one of the services, do:
+
+```
+cd <server> # for example, config_service
+./tools/gae upload -A <instance_name>
+```
+
+As described in the output by the tool, you can access it to
+`<version>-dot-<name>.appspot.com` until you switch the default version.
+
+
+### Changing the version
+
+To make the new code _live_, you need to change the default version:
+
+```
+cd <server> # for example, config_service
+./tools/gae switch -A <instance_name>
+```
+
+`gae` will propose the versions already uploaded and will propose the latest one
+by default.
+
+
## External dependencies
luci-py leverages Chromium specific functionalities:
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698