Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(65)

Unified Diff: milo/frontend/app.yaml

Issue 2953183002: Fix milo deployment (Closed)
Patch Set: License header fix Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « milo/Makefile ('k') | milo/frontend/appengine/app.yaml » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: milo/frontend/app.yaml
diff --git a/milo/frontend/app.yaml b/milo/frontend/app.yaml
deleted file mode 100644
index 600b895f01d12afe5c848ebe280c1b72aebe73c9..0000000000000000000000000000000000000000
--- a/milo/frontend/app.yaml
+++ /dev/null
@@ -1,43 +0,0 @@
-runtime: go
-api_version: go1
-service: default
-
-instance_class: F4_1G
-
-handlers:
-# For static resources such as css and js files.
-- url: /static
- secure: always
- static_dir: static
-
-# For sideloading data for testing and development.
-- url: /_ah/remote_api
- script: _go_app
-
-# For admin resources or endpoints meant to be hit by a cron job.
-- url: /admin/.*
- script: _go_app
- secure: always
- login: admin
-
-# Pubsub Handler. This is strictly necessary because the default module
-# contains a /.* routing rule, so if it was targetted directly, we still want
-# login:admin to apply.
-- url: /_ah/push-handlers/.*
- script: _go_app
- secure: always
- login: admin
-
-# Everything goes here.
-- url: /.*
- script: _go_app
- secure: always
-
-builtins:
-- remote_api: on
-
-includes:
-- static
-
-inbound_services:
-- warmup
« no previous file with comments | « milo/Makefile ('k') | milo/frontend/appengine/app.yaml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698