| 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:
|
| +- appstats: on
|
| +- deferred: on
|
| +
|
| +
|
| +skip_files:
|
| +- ^(.*/)?app\.yaml
|
| +- ^(.*/)?app\.yml
|
| +- ^(.*/)?index\.yaml
|
| +- ^(.*/)?index\.yml
|
| +- ^(.*/)?#.*#
|
| +- ^(.*/)?.*~
|
| +- ^(.*/)?.*\.py[co]
|
| +- ^(.*/)?.*/RCS/.*
|
| +- ^(.*/)?\..*
|
| +- ^(.*/)?.*\.bak$
|
| +- tests/(.*/)?.*
|
|
|