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

Side by Side Diff: appengine/predator/app/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
(Empty)
1 application: predator-for-me-staging
2 module: default
3 version: 1
4 runtime: python27
5 api_version: 1
6 threadsafe: true
7 instance_class: F1
8 automatic_scaling:
9 min_idle_instances: 1
10 max_concurrent_requests: 40
11
12 handlers:
13 # Static resources and home page.
14 # Web UI pages.
15 - url: /.*
16 script: frontend.main.frontend_app
17 secure: always
18
19 skip_files:
20 - ^(.*/)?#.*#$
21 - ^(.*/)?.*~$
22 - ^(.*/)?.*\.py[co]$
23 - ^(.*/)?.*_test\.py$
24 - ^(.*/)?tests\.py$
25 - ^(.*/)?\..*$
26 - ^(.*/)?.*\.md$
27 - __init__.py
28 - backend/.*
29
30 libraries:
31 - name: webapp2
32 version: latest
33 - name: jinja2
34 version: latest
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698