| 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 | 20 |
| 21 includes: | 21 includes: |
| 22 - components/auth | 22 - components/auth |
| 23 | 23 |
| 24 libraries: | 24 libraries: |
| 25 - name: endpoints | 25 - name: endpoints |
| 26 version: 1.0 | 26 version: 1.0 |
| 27 - name: jinja2 | |
| 28 version: 2.6 | |
| 29 - name: pycrypto | 27 - name: pycrypto |
| 30 version: 2.6 | 28 version: 2.6 |
| 31 - name: webob | 29 - name: webob |
| 32 version: 1.2.3 | 30 version: 1.2.3 |
| 33 - name: webapp2 | 31 - name: webapp2 |
| 34 version: 2.5.2 | 32 version: 2.5.2 |
| 35 | 33 |
| 36 skip_files: | 34 skip_files: |
| 37 # Test and tools. | 35 # Test and tools. |
| 38 - support/ | 36 - support/ |
| 39 - ^tests/ | 37 - ^tests/ |
| 40 - ^tools/ | 38 - ^tools/ |
| 41 - test_.+ | 39 - test_.+ |
| 42 - .+_test\.py$ | 40 - .+_test\.py$ |
| 43 # Junk files. | 41 # Junk files. |
| 44 - ^(.*/)?\..* | 42 - ^(.*/)?\..* |
| 45 - .+\.orig$ | 43 - .+\.orig$ |
| 46 - .+\.rej$ | 44 - .+\.rej$ |
| 47 - ^(.*/)?#.*# | 45 - ^(.*/)?#.*# |
| 48 - .+~ | 46 - .+~ |
| 49 - .+\.py[co] | 47 - .+\.py[co] |
| 50 - ^[A-Z]+$ | 48 - ^[A-Z]+$ |
| 51 - ^[A-Z]+\.[a-z]+$ | 49 - ^[A-Z]+\.[a-z]+$ |
| OLD | NEW |