diff options
Diffstat (limited to 'tools')
-rw-r--r-- | tools/sheriffing/app.yaml | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/tools/sheriffing/app.yaml b/tools/sheriffing/app.yaml index 886bd11..4c7c965 100644 --- a/tools/sheriffing/app.yaml +++ b/tools/sheriffing/app.yaml @@ -1,17 +1,17 @@ -application: chromium-sheriffing
-version: 1
-runtime: python27
-api_version: 1
-threadsafe: true
-
-# Silly way of using appspot for static hosting. (It has a "free" tier vs.
-# Cloud Storage which requires billing info for the << $1 it will cost to
-# host this.)
-handlers:
-- url: /
- static_files: index.html
- upload: index.html
-
-- url: /(.*)
- static_files: \1
- upload: (.*)
+application: chromium-sheriffing +version: 1 +runtime: python27 +api_version: 1 +threadsafe: true + +# Silly way of using appspot for static hosting. (It has a "free" tier vs. +# Cloud Storage which requires billing info for the << $1 it will cost to +# host this.) +handlers: +- url: / + static_files: index.html + upload: index.html + +- url: /(.*) + static_files: \1 + upload: (.*) |