OLD | NEW |
(Empty) | |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is govered by a BSD-style |
| 3 # license that can be found in the LICENSE file or at |
| 4 # https://developers.google.com/open-source/licenses/bsd |
| 5 |
| 6 application: monorail-staging |
| 7 version: 2015-05-26 |
| 8 runtime: python27 |
| 9 api_version: 1 |
| 10 threadsafe: no |
| 11 |
| 12 default_expiration: "3600d" |
| 13 |
| 14 instance_class: F4 |
| 15 automatic_scaling: |
| 16 min_idle_instances: 10 |
| 17 max_pending_latency: 0.2s |
| 18 |
| 19 handlers: |
| 20 - url: /_ah/spi/.* |
| 21 script: monorailapp.endpoints |
| 22 |
| 23 - url: /robots.txt |
| 24 static_files: static/robots.txt |
| 25 upload: static/robots.txt |
| 26 |
| 27 - url: /database-maintenance |
| 28 static_files: static/database-maintenance.html |
| 29 upload: static/database-maintenance.html |
| 30 |
| 31 - url: /static |
| 32 static_dir: static |
| 33 |
| 34 - url: /_ah/mail/.+ |
| 35 script: monorailapp.app |
| 36 login: admin |
| 37 |
| 38 - url: /_task/.* |
| 39 script: monorailapp.app |
| 40 login: admin |
| 41 |
| 42 - url: /_cron/.* |
| 43 script: monorailapp.app |
| 44 login: admin |
| 45 |
| 46 - url: /_backend/.* |
| 47 script: monorailapp.app |
| 48 login: admin |
| 49 |
| 50 - url: /.* |
| 51 script: monorailapp.app |
| 52 secure: always |
| 53 |
| 54 inbound_services: |
| 55 - mail |
| 56 |
| 57 libraries: |
| 58 - name: endpoints |
| 59 version: 1.0 |
| 60 - name: MySQLdb |
| 61 version: "latest" |
| 62 - name: pycrypto |
| 63 version: "2.6" |
| 64 - name: django |
| 65 version: 1.4 |
| 66 |
| 67 includes: |
| 68 - gae_ts_mon |
OLD | NEW |