Index: appengine_apps/chromium_status/app.yaml |
diff --git a/appengine_apps/chromium_status/app.yaml b/appengine_apps/chromium_status/app.yaml |
deleted file mode 100644 |
index 0fd568d61d6a526f2e02200fd7b8153e4f608eb6..0000000000000000000000000000000000000000 |
--- a/appengine_apps/chromium_status/app.yaml |
+++ /dev/null |
@@ -1,57 +0,0 @@ |
-application: chromium-status-hr |
-version: 1 |
-runtime: python27 |
-api_version: 1 |
-threadsafe: true |
- |
-inbound_services: |
-- warmup |
-- xmpp_message |
- |
-handlers: |
-- url: /(.*\.(html|js|txt|ttf)) |
- static_files: static/\1 |
- upload: static/(.*\.(html|js|txt|ttf)) |
- |
-# main will look for a replacement in blobstore, if not, will redirect to |
-# static/ |
-- url: /([^/]+\.(gif|png|jpg|ico)) |
- script: appengine_module.chromium_status.main.APPLICATION |
- |
-- url: /static/([^/]+\.(gif|png|jpg|ico)) |
- static_files: static/\1 |
- upload: static/([^/]+\.(gif|png|jpg|ico)) |
- |
-- url: /stylesheets |
- static_dir: stylesheets |
- |
-- url: /templates |
- script: appengine_module.chromium_status.templates |
- |
-- url: /restricted/.* |
- script: appengine_module.chromium_status.main.APPLICATION |
- login: admin |
- |
-- url: /.* |
- script: appengine_module.chromium_status.main.APPLICATION |
- |
- |
-# Search DEFAULT_SKIP_FILES in google.appengine.api.appinfo plus a few others |
-skip_files: | |
- ^(.*/)?( |
- (app\.yaml)| |
- (app\.yml)| |
- (index\.yaml)| |
- (index\.yml)| |
- (#.*#)| |
- (.*~)| |
- (.*\.py[co])| |
- (.*/RCS/.*)| |
- (\..*)| |
- (tests/.*)| |
- (tools/.*)| |
- ([A-Z]+(\.py)?)| |
- (Makefile)| |
- (.*\.rej)| |
- (.*\.orig)| |
- )$ |