OLD | NEW |
1 application: isolateserver-dev | 1 application: isolateserver-dev |
2 module: backend | 2 module: backend |
3 version: 1 | 3 version: 1 |
4 runtime: python27 | 4 runtime: python27 |
5 api_version: 1 | 5 api_version: 1 |
6 threadsafe: true | 6 threadsafe: true |
7 | 7 |
8 instance_class: F2 | 8 instance_class: F2 |
9 | 9 |
10 handlers: | 10 handlers: |
11 - url: /internal/mapreduce(/.*)? | 11 - url: /internal/mapreduce(/.*)? |
12 script: mapreduce.main.APP | 12 script: mapreduce.main.APP |
13 secure: always | 13 secure: always |
14 login: admin | 14 login: admin |
15 | 15 |
16 - url: /internal.* | 16 - url: /internal.* |
17 script: main_backend.app | 17 script: main_backend.app |
18 secure: always | 18 secure: always |
19 login: admin | 19 login: admin |
20 | 20 |
21 builtins: | 21 builtins: |
22 - remote_api: on | 22 - remote_api: on |
23 | 23 |
24 includes: | 24 includes: |
25 - components/ereporter2 | 25 - components/ereporter2 |
26 | 26 |
27 # https://developers.google.com/appengine/docs/python/tools/libraries27 | 27 # https://developers.google.com/appengine/docs/python/tools/libraries27 |
28 # As the doc says, serious applications should specify the third party versions. | 28 # As the doc says, serious applications should specify the third party versions. |
29 libraries: | 29 libraries: |
30 - name: jinja2 | |
31 version: "2.6" | |
32 - name: webapp2 | 30 - name: webapp2 |
33 version: "2.5.2" | 31 version: "2.5.2" |
34 - name: webob | 32 - name: webob |
35 version: "1.2.3" | 33 version: "1.2.3" |
36 - name: yaml | 34 - name: yaml |
37 version: "3.10" | 35 version: "3.10" |
38 - name: pycrypto | 36 - name: pycrypto |
39 version: "2.6" | 37 version: "2.6" |
40 | 38 |
41 skip_files: | 39 skip_files: |
42 # Test and tools. | 40 # Test and tools. |
43 - support/ | 41 - support/ |
44 - ^tests/ | 42 - ^tests/ |
45 - ^tools/ | 43 - ^tools/ |
46 - test_.+ | 44 - test_.+ |
47 - .+_test\.py$ | 45 - .+_test\.py$ |
48 # Junk files. | 46 # Junk files. |
49 - ^(.*/)?\..* | 47 - ^(.*/)?\..* |
50 - .+\.orig$ | 48 - .+\.orig$ |
51 - .+\.rej$ | 49 - .+\.rej$ |
52 - ^(.*/)?#.*# | 50 - ^(.*/)?#.*# |
53 - .+~ | 51 - .+~ |
54 - .+\.py[co] | 52 - .+\.py[co] |
55 - ^[A-Z]+$ | 53 - ^[A-Z]+$ |
56 - ^[A-Z]+\.[a-z]+$ | 54 - ^[A-Z]+\.[a-z]+$ |
OLD | NEW |