blob: 1514e23b52c7114b36424e312027a6c5afa2f0eb [file] [log] [blame]
# Copyright 2018 The Chromium Authors. All rights reserved.
# Use of this source code is govered by a BSD-style
# license that can be found in the LICENSE file or at
# https://developers.google.com/open-source/licenses/bsd
application: monorail-staging
service: latency-insensitive
version: 2018-05-31
runtime: python27
api_version: 1
threadsafe: no
default_expiration: "3600d"
ifdef(`PROD', `
instance_class: F4
automatic_scaling:
min_idle_instances: 5
max_pending_latency: 0.2s
')
ifdef(`STAGING', `
instance_class: F4
automatic_scaling:
min_idle_instances: 5
max_pending_latency: 0.2s
')
ifdef(`DEMO', `
instance_class: F4
')
handlers:
- url: /_ah/warmup
script: monorailapp.app
login: admin
- url: /_ah/api/.*
script: monorailapp.endpoints
- url: /_task/.*
script: monorailapp.app
login: admin
- url: /_cron/.*
script: monorailapp.app
login: admin
- url: /_ah/mail/.*
script: monorailapp.app
login: admin
inbound_services:
- mail
- mail_bounce
ifdef(`PROD', `
- warmup
')
ifdef(`STAGING', `
- warmup
')
libraries:
- name: endpoints
version: 1.0
- name: MySQLdb
version: "latest"
- name: pycrypto
version: "2.6"
- name: django
version: 1.9
includes:
- gae_ts_mon
skip_files:
- ^(.*/)?#.*#$
- ^(.*/)?.*~$
- ^(.*/)?.*\.py[co]$
- ^(.*/)?.*/RCS/.*$
- ^(.*/)?\..*$
- node_modules/