Does google app engine support environment variables? -


i've noticed developer console doesn't seem expose anywhere can configure static environment variables.

is expectation on gae bundle variables part of deployment build server? if so, there documentation on gae/google cloud covers why or details philosophy?

environment variables can defined in application's app.yaml

an example python/php/(maybe go?) app. java uses different format.

env_variables:   my_env_var: 'some value here' 

https://cloud.google.com/appengine/docs/python/config/appconfig#python_app_yaml_defining_environment_variables

you can set these values during ci process if need programmatically appending them app.yaml before deploying.


Comments

Popular posts from this blog

how to do line continuation in perl debugger for entering raw multi-line text (EOT)? -

android - Linear layout children not scrolling -

javascript - Create websocket without connecting -