Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(244)

Side by Side Diff: appengine/findit_mock/app.yaml

Issue 2447253002: [Findit & Predator] Code reorg of Findit. (Closed)
Patch Set: Clean up. Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 application: findit-for-me-dev 1 application: findit-for-me-staging
2 module: crash-backend-cracas 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 instance_class: B8 7 instance_class: F1
8 basic_scaling: 8 automatic_scaling:
9 max_instances: 20 9 min_idle_instances: 1
10 idle_timeout: 20m 10 max_concurrent_requests: 40
11 11
12 handlers: 12 handlers:
13 # Pipeline handler. 13 # Static resources and home page.
14 - url: /_ah/pipeline(/.*)? 14 # Web UI pages.
15 script: "common.pipeline_wrapper.pipeline_handlers._APP" 15 - url: /version
16 script: default_main.frontend_app
16 secure: always 17 secure: always
17 18
18 skip_files: 19 skip_files:
19 - ^(.*/)?#.*#$ 20 - ^(.*/)?#.*#$
20 - ^(.*/)?.*~$ 21 - ^(.*/)?.*~$
21 - ^(.*/)?.*\.py[co]$ 22 - ^(.*/)?.*\.py[co]$
22 - ^(.*/)?.*_test\.py$ 23 - ^(.*/)?.*_test\.py$
23 - ^(.*/)?tests\.py$ 24 - ^(.*/)?tests\.py$
24 - ^(.*/)?\..*$ 25 - ^(.*/)?\..*$
25 - ^(.*/)?.*\.md$ 26 - ^(.*/)?.*\.md$
26 - ^(.*/)?README$ 27 - ^(.*/)?scripts/.*$
27 - ^(.*/)?Makefile$
28 - ^(.*/)?util_scripts/.*$
29 28
30 libraries: 29 libraries:
31 - name: webapp2 30 - name: webapp2
32 version: latest 31 version: latest
33 - name: jinja2 32 - name: jinja2
34 version: latest 33 version: latest
35 - name: pycrypto 34 - name: pycrypto
36 version: latest 35 version: latest
37 - name: endpoints 36 - name: endpoints
38 version: 1.0 37 version: 1.0
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698