go.chromium.org/luci@v0.0.0-20240309015107-7cdc2e660f33/teams/app.yaml (about)

     1  runtime: go121
     2  
     3  # Note: this is interpreted by gae.py, it maps the app ID being deployed to
     4  # values of ${...} vars.
     5  #
     6  # This configuration is only used for developer testing. The
     7  # configuration used for development and production instances is
     8  # contained in the infradata/gae repo. Refer to LUCI GAE Automatic
     9  # Deployment for more (http://go/luci/how_to_deploy.md) (Googlers only).
    10  luci_gae_vars:
    11    luci-tree-status-dev:
    12      AUTH_SERVICE_HOST: chrome-infra-auth-dev.appspot.com
    13      SPANNER_DB: projects/luci-teams-dev/instances/dev/databases/luci-teams-dev
    14  
    15  handlers:
    16  - url: /.*
    17    script: auto
    18    secure: always
    19  
    20  inbound_services:
    21  - warmup
    22  
    23  entrypoint: >
    24    main
    25    -auth-service-host ${AUTH_SERVICE_HOST}
    26    -spanner-database ${SPANNER_DB}