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

Side by Side Diff: chromium-committers/app.yaml

Issue 25515004: Add chromium-committers appengine app. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/
Patch Set: Created 7 years, 2 months 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 application: chromium-committers
2 version: 1
3 runtime: python27
4 api_version: 1
5 threadsafe: true
6
7 libraries:
8 - name: webapp2
9 version: latest
10 - name: jinja2
11 version: latest
12
13 handlers:
14
15 - url: /favicon.ico
16 static_files: static/favicon.ico
17 upload: static/favicon.ico
18 secure: always
19
20 - url: /.*
21 script: app.app
22 secure: always
23
24
25 skip_files:
26 - ^(.*/)?app\.yaml
27 - ^(.*/)?app\.yml
28 - ^(.*/)?index\.yaml
29 - ^(.*/)?index\.yml
30 - ^(.*/)?#.*#
31 - ^(.*/)?.*~
32 - ^(.*/)?.*\.py[co]
33 - ^(.*/)?.*/RCS/.*
34 - ^(.*/)?\..*
35 - ^(.*/)?.*\.bak$
36 - tests/(.*/)?.*
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698