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

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
8 libraries:
9 - name: webapp2
10 version: latest
11
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 static_files: static/index.html
22 upload: static/index.html
23 secure: always
24
25 - url: /.*
26 script: app.app
27 secure: always
28
29
30 builtins:
Vadim Sh. 2013/10/04 04:38:19 why?..
agable 2013/10/04 21:10:15 Good question. They're just part of the default ap
31 - appstats: on
32 - deferred: on
33
34
35 skip_files:
36 - ^(.*/)?app\.yaml
37 - ^(.*/)?app\.yml
38 - ^(.*/)?index\.yaml
39 - ^(.*/)?index\.yml
40 - ^(.*/)?#.*#
41 - ^(.*/)?.*~
42 - ^(.*/)?.*\.py[co]
43 - ^(.*/)?.*/RCS/.*
44 - ^(.*/)?\..*
45 - ^(.*/)?.*\.bak$
46 - tests/(.*/)?.*
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698