OLD | NEW |
---|---|
(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/(.*/)?.* | |
OLD | NEW |