OLD | NEW |
1 application: isolateserver-dev | 1 application: isolateserver-dev |
2 module: default | 2 module: default |
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: F4 | 8 instance_class: F4 |
9 automatic_scaling: | 9 automatic_scaling: |
10 min_idle_instances: 2 | 10 min_idle_instances: 2 |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 includes: | 57 includes: |
58 - components/auth | 58 - components/auth |
59 - components/ereporter2 | 59 - components/ereporter2 |
60 - components/static_third_party.yaml | 60 - components/static_third_party.yaml |
61 | 61 |
62 # https://developers.google.com/appengine/docs/python/tools/libraries27 | 62 # https://developers.google.com/appengine/docs/python/tools/libraries27 |
63 # As the doc says, serious applications should specify the third party versions. | 63 # As the doc says, serious applications should specify the third party versions. |
64 libraries: | 64 libraries: |
65 - name: endpoints | 65 - name: endpoints |
66 version: "1.0" | 66 version: "1.0" |
67 - name: jinja2 | |
68 version: "2.6" | |
69 - name: pycrypto | 67 - name: pycrypto |
70 version: "2.6" | 68 version: "2.6" |
71 - name: webapp2 | 69 - name: webapp2 |
72 version: "2.5.2" | 70 version: "2.5.2" |
73 - name: webob | 71 - name: webob |
74 version: "1.2.3" | 72 version: "1.2.3" |
75 - name: yaml | 73 - name: yaml |
76 version: "3.10" | 74 version: "3.10" |
77 | 75 |
78 skip_files: | 76 skip_files: |
79 # Test and tools. | 77 # Test and tools. |
80 - support/ | 78 - support/ |
81 - ^tests/ | 79 - ^tests/ |
82 - ^tools/ | 80 - ^tools/ |
83 - test_.+ | 81 - test_.+ |
84 - .+_test\.py$ | 82 - .+_test\.py$ |
85 # Junk files. | 83 # Junk files. |
86 - ^(.*/)?\..* | 84 - ^(.*/)?\..* |
87 - .+\.orig$ | 85 - .+\.orig$ |
88 - .+\.rej$ | 86 - .+\.rej$ |
89 - ^(.*/)?#.*# | 87 - ^(.*/)?#.*# |
90 - .+~ | 88 - .+~ |
91 - .+\.py[co] | 89 - .+\.py[co] |
92 - ^[A-Z]+$ | 90 - ^[A-Z]+$ |
93 - ^[A-Z]+\.[a-z]+$ | 91 - ^[A-Z]+\.[a-z]+$ |
OLD | NEW |