You have to create a new .yaml, let's call it *mymodule.yaml* application: yourapplication module: mymodule version: 1 runtime: python27 threadsafe: true api_version: 1 builtins: - deferred: on inbound_services: - warmup
#instance_class: F2 #automatic_scaling: # min_idle_instances: 1 # max_idle_instances: 1 # min_pending_latency: 600ms # max_pending_latency: 2000ms #previously just the max_ one at 900ms [31/05/15] instance_class: F2 #previously the above version [21/05/17] automatic_scaling: min_idle_instances: 0 max_idle_instances: 1 min_pending_latency: 15000ms #max max_pending_latency: automatic Then, to deploy, you need to use: *python2.7 ~/appengine-deployer/appcfg.py --no_cookies --noauth_local_webserver --email=your_email update app.yaml mymodule.yaml;* Copy/pasted these from my routine, the GUI way might be different, this is the CLI way -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/google-appengine. To view this discussion on the web visit https://groups.google.com/d/msgid/google-appengine/ddf1b271-5fa0-47d3-981b-2556163b70fb%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
