Index: chromium-committers/app.yaml |
=================================================================== |
--- chromium-committers/app.yaml (revision 0) |
+++ chromium-committers/app.yaml (revision 0) |
@@ -0,0 +1,46 @@ |
+application: chromium-committers |
+version: 1 |
+runtime: python27 |
+api_version: 1 |
+threadsafe: true |
+ |
+ |
+libraries: |
+- name: webapp2 |
+ version: latest |
+ |
+ |
+handlers: |
+ |
+- url: /favicon.ico |
+ static_files: static/favicon.ico |
+ upload: static/favicon.ico |
+ secure: always |
+ |
+- url: / |
+ static_files: static/index.html |
+ upload: static/index.html |
+ secure: always |
+ |
+- url: /.* |
+ script: app.app |
+ secure: always |
+ |
+ |
+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
|
+- appstats: on |
+- deferred: on |
+ |
+ |
+skip_files: |
+- ^(.*/)?app\.yaml |
+- ^(.*/)?app\.yml |
+- ^(.*/)?index\.yaml |
+- ^(.*/)?index\.yml |
+- ^(.*/)?#.*# |
+- ^(.*/)?.*~ |
+- ^(.*/)?.*\.py[co] |
+- ^(.*/)?.*/RCS/.* |
+- ^(.*/)?\..* |
+- ^(.*/)?.*\.bak$ |
+- tests/(.*/)?.* |