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 handlers: | 8 handlers: |
9 - url: /internal/cron/.* | 9 - url: /internal/cron/.* |
10 login: admin | 10 login: admin |
11 script: main.cron_app | 11 script: main.cron_app |
12 secure: always | 12 secure: always |
13 - url: /internal/queues/.* | 13 - url: /internal/queues/.* |
14 login: admin | 14 login: admin |
15 script: main.queues_app | 15 script: main.queues_app |
16 secure: always | 16 secure: always |
17 - url: /pubsub/.* | 17 - url: /pubsub/.* |
18 script: main.pubsub_app | 18 script: main.pubsub_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 |