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'
you can set these values during ci process if need programmatically appending them app.yaml before deploying.
Comments
Post a Comment