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

Side by Side Diff: appengine_apps/chromium_status/app.yaml

Issue 778533003: Moved chromium_status to appengine/ (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: Created 6 years 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: chromium-status-hr
2 version: 1
3 runtime: python27
4 api_version: 1
5 threadsafe: true
6
7 inbound_services:
8 - warmup
9 - xmpp_message
10
11 handlers:
12 - url: /(.*\.(html|js|txt|ttf))
13 static_files: static/\1
14 upload: static/(.*\.(html|js|txt|ttf))
15
16 # main will look for a replacement in blobstore, if not, will redirect to
17 # static/
18 - url: /([^/]+\.(gif|png|jpg|ico))
19 script: appengine_module.chromium_status.main.APPLICATION
20
21 - url: /static/([^/]+\.(gif|png|jpg|ico))
22 static_files: static/\1
23 upload: static/([^/]+\.(gif|png|jpg|ico))
24
25 - url: /stylesheets
26 static_dir: stylesheets
27
28 - url: /templates
29 script: appengine_module.chromium_status.templates
30
31 - url: /restricted/.*
32 script: appengine_module.chromium_status.main.APPLICATION
33 login: admin
34
35 - url: /.*
36 script: appengine_module.chromium_status.main.APPLICATION
37
38
39 # Search DEFAULT_SKIP_FILES in google.appengine.api.appinfo plus a few others
40 skip_files: |
41 ^(.*/)?(
42 (app\.yaml)|
43 (app\.yml)|
44 (index\.yaml)|
45 (index\.yml)|
46 (#.*#)|
47 (.*~)|
48 (.*\.py[co])|
49 (.*/RCS/.*)|
50 (\..*)|
51 (tests/.*)|
52 (tools/.*)|
53 ([A-Z]+(\.py)?)|
54 (Makefile)|
55 (.*\.rej)|
56 (.*\.orig)|
57 )$
OLDNEW
« no previous file with comments | « appengine_apps/chromium_status/README ('k') | appengine_apps/chromium_status/appengine_module/__init__.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698