| OLD | NEW |
| 1 # Do not change. Use gae.py to upload a differently named instance. | 1 # Do not change. Use gae.py to upload a differently named instance. |
| 2 application: your-gce-backend-id | 2 application: your-gce-backend-id |
| 3 version: 1 | 3 version: 1 |
| 4 runtime: python27 | 4 runtime: python27 |
| 5 threadsafe: true | 5 threadsafe: true |
| 6 api_version: 1 | 6 api_version: 1 |
| 7 | 7 |
| 8 automatic_scaling: | 8 automatic_scaling: |
| 9 min_idle_instances: 1 | 9 min_idle_instances: 1 |
| 10 | 10 |
| 11 handlers: | 11 handlers: |
| 12 - url: /_ah/spi/.* | 12 - url: /_ah/spi/.* |
| 13 script: main.endpoints_app | 13 script: main.endpoints_app |
| 14 secure: always | 14 secure: always |
| 15 - url: /api/.* | 15 - url: /api/.* |
| 16 script: main.frontend_app | 16 script: main.frontend_app |
| 17 secure: always | 17 secure: always |
| 18 - url: /internal/cron/.* | 18 - url: /internal/cron/.* |
| 19 login: admin | 19 login: admin |
| 20 script: main.cron_app | 20 script: main.cron_app |
| 21 secure: always | 21 secure: always |
| 22 - url: /internal/queues/.* | 22 - url: /internal/queues/.* |
| 23 login: admin | 23 login: admin |
| 24 script: main.queues_app | 24 script: main.queues_app |
| 25 secure: always | 25 secure: always |
| 26 - url: /pubsub/.* | |
| 27 script: main.pubsub_app | |
| 28 secure: always | |
| 29 | 26 |
| 30 includes: | 27 includes: |
| 31 - components/auth | 28 - components/auth |
| 32 - components/config | 29 - components/config |
| 33 - gae_ts_mon | 30 - gae_ts_mon |
| 34 | 31 |
| 35 libraries: | 32 libraries: |
| 36 - name: endpoints | 33 - name: endpoints |
| 37 version: 1.0 | 34 version: 1.0 |
| 38 - name: pycrypto | 35 - name: pycrypto |
| (...skipping 12 matching lines...) Expand all Loading... |
| 51 - .+_test\.py$ | 48 - .+_test\.py$ |
| 52 # Junk files. | 49 # Junk files. |
| 53 - ^(.*/)?\..* | 50 - ^(.*/)?\..* |
| 54 - .+\.orig$ | 51 - .+\.orig$ |
| 55 - .+\.rej$ | 52 - .+\.rej$ |
| 56 - ^(.*/)?#.*# | 53 - ^(.*/)?#.*# |
| 57 - .+~ | 54 - .+~ |
| 58 - .+\.py[co] | 55 - .+\.py[co] |
| 59 - ^[A-Z]+$ | 56 - ^[A-Z]+$ |
| 60 - ^[A-Z]+\.[a-z]+$ | 57 - ^[A-Z]+\.[a-z]+$ |
| OLD | NEW |