| 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-machine-provider-id | 2 application: your-machine-provider-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 handlers: | 8 handlers: |
| 9 - url: /_ah/spi/.* | 9 - url: /_ah/spi/.* |
| 10 script: main.endpoints_app | 10 script: main.endpoints_app |
| 11 secure: always | 11 secure: always |
| 12 - url: /internal/cron/.* | 12 - url: /internal/cron/.* |
| 13 login: admin | 13 login: admin |
| 14 script: main.cron_app | 14 script: main.cron_app |
| 15 secure: always | 15 secure: always |
| 16 - url: /internal/queues/.* | 16 - url: /internal/queues/.* |
| 17 login: admin | 17 login: admin |
| 18 script: main.queue_app | 18 script: main.queue_app |
| 19 secure: always | 19 secure: always |
| 20 - url: /static/ |
| 21 secure: always |
| 22 static_dir: static |
| 23 - url: /.* |
| 24 script: main.frontend_app |
| 25 secure: always |
| 20 | 26 |
| 21 includes: | 27 includes: |
| 22 - components/auth | 28 - components/auth |
| 23 - gae_ts_mon | 29 - gae_ts_mon |
| 24 | 30 |
| 25 libraries: | 31 libraries: |
| 26 - name: endpoints | 32 - name: endpoints |
| 27 version: 1.0 | 33 version: 1.0 |
| 28 - name: pycrypto | 34 - name: pycrypto |
| 29 version: 2.6 | 35 version: 2.6 |
| (...skipping 11 matching lines...) Expand all Loading... |
| 41 - .+_test\.py$ | 47 - .+_test\.py$ |
| 42 # Junk files. | 48 # Junk files. |
| 43 - ^(.*/)?\..* | 49 - ^(.*/)?\..* |
| 44 - .+\.orig$ | 50 - .+\.orig$ |
| 45 - .+\.rej$ | 51 - .+\.rej$ |
| 46 - ^(.*/)?#.*# | 52 - ^(.*/)?#.*# |
| 47 - .+~ | 53 - .+~ |
| 48 - .+\.py[co] | 54 - .+\.py[co] |
| 49 - ^[A-Z]+$ | 55 - ^[A-Z]+$ |
| 50 - ^[A-Z]+\.[a-z]+$ | 56 - ^[A-Z]+\.[a-z]+$ |
| OLD | NEW |