go.chromium.org/luci@v0.0.0-20240309015107-7cdc2e660f33/tree_status/app.yaml (about) 1 runtime: go121 2 3 # This is needed to use GAE Mail API via `mailer` module. 4 # app_engine_apis: true 5 6 # Note: this is interpreted by gae.py, it maps the app ID being deployed to 7 # values of ${...} vars. 8 # 9 # This configuration is only used for developer testing. The 10 # configuration used for development and production instances is 11 # contained in the infradata/gae repo. Refer to LUCI GAE Automatic 12 # Deployment for more (go/luci/how_to_deploy.md) (Googlers only). 13 luci_gae_vars: 14 luci-tree-status-dev: 15 AUTH_SERVICE_HOST: chrome-infra-auth-dev.appspot.com 16 OAUTH_CLIENT_ID: 713057630411-eqah8ap1ptgnf4nnepk10sutqg0msiv1.apps.googleusercontent.com 17 SPANNER_DB: projects/luci-tree-status-dev/instances/dev/databases/luci-tree-status-dev 18 19 handlers: 20 - url: /.* 21 script: auto 22 secure: always 23 24 inbound_services: 25 - warmup 26 27 entrypoint: > 28 main 29 -auth-service-host ${AUTH_SERVICE_HOST} 30 -frontend-client-id ${OAUTH_CLIENT_ID} 31 -spanner-database ${SPANNER_DB}