| OLD | NEW |
| 1 application: auth-service | 1 application: auth-service |
| 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 handlers: | 8 handlers: |
| 9 - url: /internal.* | 9 - url: /internal.* |
| 10 script: main_backend.app | 10 script: main_backend.app |
| 11 secure: always | 11 secure: always |
| 12 login: admin | 12 login: admin |
| 13 | 13 |
| 14 builtins: | 14 builtins: |
| 15 - remote_api: on | 15 - remote_api: on |
| 16 | 16 |
| 17 includes: | 17 includes: |
| 18 - components/ereporter2 | 18 - components/ereporter2 |
| 19 | 19 |
| 20 # https://developers.google.com/appengine/docs/python/tools/libraries27 | 20 # https://developers.google.com/appengine/docs/python/tools/libraries27 |
| 21 # As the doc says, serious applications should specify the third party versions. | 21 # As the doc says, serious applications should specify the third party versions. |
| 22 libraries: | 22 libraries: |
| 23 - name: endpoints | 23 - name: endpoints |
| 24 version: "1.0" | 24 version: "1.0" |
| 25 - name: jinja2 | |
| 26 version: "2.6" | |
| 27 - name: webapp2 | 25 - name: webapp2 |
| 28 version: "2.5.2" | 26 version: "2.5.2" |
| 29 - name: webob | 27 - name: webob |
| 30 version: "1.2.3" | 28 version: "1.2.3" |
| 31 - name: yaml | 29 - name: yaml |
| 32 version: "3.10" | 30 version: "3.10" |
| 33 | 31 |
| 34 skip_files: | 32 skip_files: |
| 35 # Test and tools. | 33 # Test and tools. |
| 36 - support/ | 34 - support/ |
| 37 - ^tests/ | 35 - ^tests/ |
| 38 - ^tools/ | 36 - ^tools/ |
| 39 - test_.+ | 37 - test_.+ |
| 40 - .+_test\.py$ | 38 - .+_test\.py$ |
| 41 # Junk files. | 39 # Junk files. |
| 42 - ^(.*/)?\..* | 40 - ^(.*/)?\..* |
| 43 - .+\.orig$ | 41 - .+\.orig$ |
| 44 - .+\.rej$ | 42 - .+\.rej$ |
| 45 - ^(.*/)?#.*# | 43 - ^(.*/)?#.*# |
| 46 - .+~ | 44 - .+~ |
| 47 - .+\.py[co] | 45 - .+\.py[co] |
| 48 - ^[A-Z]+$ | 46 - ^[A-Z]+$ |
| 49 - ^[A-Z]+\.[a-z]+$ | 47 - ^[A-Z]+\.[a-z]+$ |
| OLD | NEW |