| OLD | NEW |
| 1 application: findit-for-me-dev | 1 application: findit-for-me-dev |
| 2 module: waterfall-backend | 2 module: crash-backend-fracas |
| 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: B2 | 7 instance_class: B2 |
| 8 basic_scaling: | 8 basic_scaling: |
| 9 max_instances: 10 | 9 max_instances: 50 |
| 10 idle_timeout: 20m | 10 idle_timeout: 20m |
| 11 | 11 |
| 12 handlers: | 12 handlers: |
| 13 - url: /robots.txt | |
| 14 static_files: robots.txt | |
| 15 upload: robots.txt | |
| 16 | |
| 17 # Handler for the request process queue. | |
| 18 - url: /trigger-analyses | |
| 19 script: main.backend_application | |
| 20 secure: always | |
| 21 | |
| 22 # Pipeline handler. | 13 # Pipeline handler. |
| 23 - url: /_ah/pipeline(/.*)? | 14 - url: /_ah/pipeline(/.*)? |
| 24 script: main.pipeline_backend_application | 15 script: "pipeline_wrapper.pipeline_handlers._APP" |
| 25 secure: always | 16 secure: always |
| 26 | 17 |
| 27 skip_files: | 18 skip_files: |
| 28 - ^(.*/)?#.*#$ | 19 - ^(.*/)?#.*#$ |
| 29 - ^(.*/)?.*~$ | 20 - ^(.*/)?.*~$ |
| 30 - ^(.*/)?.*\.py[co]$ | 21 - ^(.*/)?.*\.py[co]$ |
| 31 - ^(.*/)?.*_test\.py$ | 22 - ^(.*/)?.*_test\.py$ |
| 32 - ^(.*/)?tests\.py$ | 23 - ^(.*/)?tests\.py$ |
| 33 - ^(.*/)?\..*$ | 24 - ^(.*/)?\..*$ |
| 34 - ^(.*/)?.*\.md$ | 25 - ^(.*/)?.*\.md$ |
| 35 - ^(.*/)?README$ | 26 - ^(.*/)?README$ |
| 36 - ^(.*/)?Makefile$ | 27 - ^(.*/)?Makefile$ |
| 37 - ^(.*/)?util_scripts/.*$ | 28 - ^(.*/)?util_scripts/.*$ |
| 38 | 29 |
| 39 libraries: | 30 libraries: |
| 40 - name: webapp2 | 31 - name: webapp2 |
| 41 version: latest | 32 version: latest |
| 42 - name: jinja2 | 33 - name: jinja2 |
| 43 version: latest | 34 version: latest |
| 44 - name: pycrypto | 35 - name: pycrypto |
| 45 version: latest | 36 version: latest |
| 46 - name: endpoints | 37 - name: endpoints |
| 47 version: 1.0 | 38 version: 1.0 |
| OLD | NEW |