| OLD | NEW |
| 1 # Python Application Configuration | 1 # Python Application Configuration |
| 2 # https://developers.google.com/appengine/docs/python/config/appconfig | 2 # https://developers.google.com/appengine/docs/python/config/appconfig |
| 3 | 3 |
| 4 runtime: python27 | 4 runtime: python27 |
| 5 api_version: 1 | 5 api_version: 1 |
| 6 threadsafe: false | 6 threadsafe: false |
| 7 instance_class: F4_1G |
| 7 | 8 |
| 8 libraries: | 9 libraries: |
| 9 - name: jinja2 | 10 - name: jinja2 |
| 10 version: "2.6" | 11 version: "2.6" |
| 11 - name: pycrypto | 12 - name: pycrypto |
| 12 version: "2.6" | 13 version: "2.6" |
| 13 - name: webapp2 | 14 - name: webapp2 |
| 14 version: "2.5.1" | 15 version: "2.5.1" |
| 15 | 16 |
| 16 builtins: | 17 builtins: |
| (...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 195 secure: always | 196 secure: always |
| 196 | 197 |
| 197 - url: /update_test_suites | 198 - url: /update_test_suites |
| 198 script: dashboard.dispatcher.APP | 199 script: dashboard.dispatcher.APP |
| 199 login: admin | 200 login: admin |
| 200 secure: always | 201 secure: always |
| 201 | 202 |
| 202 - url: /.* | 203 - url: /.* |
| 203 script: dashboard.dispatcher.APP | 204 script: dashboard.dispatcher.APP |
| 204 secure: always | 205 secure: always |
| OLD | NEW |