| OLD | NEW |
| 1 application: findit-for-me-dev | 1 application: findit-for-me-dev |
| 2 module: crash-frontend | 2 module: crash-frontend |
| 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 instance_class: F1 | 7 instance_class: F1 |
| 8 automatic_scaling: | 8 automatic_scaling: |
| 9 min_idle_instances: 1 | 9 min_idle_instances: 1 |
| 10 max_concurrent_requests: 40 | 10 max_concurrent_requests: 40 |
| 11 | 11 |
| 12 handlers: | 12 handlers: |
| 13 # Static resources and home page. | 13 # Static resources and home page. |
| 14 - url: / | 14 - url: / |
| 15 static_files: templates/home.html | 15 static_files: templates/home.html |
| 16 upload: templates/home.html | 16 upload: templates/home.html |
| 17 | 17 |
| 18 - url: /robots.txt | 18 - url: /robots.txt |
| 19 static_files: static/robots.txt | 19 static_files: static/robots.txt |
| 20 upload: static/robots.txt | 20 upload: static/robots.txt |
| 21 | 21 |
| 22 - url: /common.css | 22 - url: /common.css |
| 23 static_files: static/common.css | 23 static_files: static/common.css |
| 24 upload: static/common.css | 24 upload: static/common.css |
| 25 | 25 |
| 26 # PubSub push endpoint. |
| 27 - url: /_ah/push-handlers/crash/fracas |
| 28 script: main.crash_frontend_web_application |
| 29 secure: always |
| 30 login: admin |
| 31 |
| 26 # Web UI pages. | 32 # Web UI pages. |
| 27 - url: /crash/.* | 33 - url: /crash/.* |
| 28 script: main.crash_frontend_web_application | 34 script: main.crash_frontend_web_application |
| 29 secure: always | 35 secure: always |
| 30 | 36 |
| 31 skip_files: | 37 skip_files: |
| 32 - ^(.*/)?#.*#$ | 38 - ^(.*/)?#.*#$ |
| 33 - ^(.*/)?.*~$ | 39 - ^(.*/)?.*~$ |
| 34 - ^(.*/)?.*\.py[co]$ | 40 - ^(.*/)?.*\.py[co]$ |
| 35 - ^(.*/)?.*_test\.py$ | 41 - ^(.*/)?.*_test\.py$ |
| 36 - ^(.*/)?tests\.py$ | 42 - ^(.*/)?tests\.py$ |
| 37 - ^(.*/)?\..*$ | 43 - ^(.*/)?\..*$ |
| 38 - ^(.*/)?.*\.md$ | 44 - ^(.*/)?.*\.md$ |
| 39 - ^(.*/)?README$ | 45 - ^(.*/)?README$ |
| 40 - ^(.*/)?Makefile$ | 46 - ^(.*/)?Makefile$ |
| 41 - ^(.*/)?util_scripts/.*$ | 47 - ^(.*/)?util_scripts/.*$ |
| 42 | 48 |
| 43 libraries: | 49 libraries: |
| 44 - name: webapp2 | 50 - name: webapp2 |
| 45 version: latest | 51 version: latest |
| 46 - name: jinja2 | 52 - name: jinja2 |
| 47 version: latest | 53 version: latest |
| 48 - name: pycrypto | 54 - name: pycrypto |
| 49 version: latest | 55 version: latest |
| 50 - name: endpoints | 56 - name: endpoints |
| 51 version: 1.0 | 57 version: 1.0 |
| OLD | NEW |