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

Unified Diff: milo/Makefile

Issue 2796743004: Milo flex raw log viewer endpoint (Closed)
Patch Set: More review Created 3 years, 8 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 | « no previous file | milo/appengine/common/middleware.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: milo/Makefile
diff --git a/milo/Makefile b/milo/Makefile
index b8fa009883097bab25db77b0d2627e21caf1c793..8ea4bc79ea9c5985d03ba3f0a08eb5a8682b434c 100644
--- a/milo/Makefile
+++ b/milo/Makefile
@@ -13,24 +13,30 @@ dev:
up: up-all up-dispatch
up-all:
- gae.py upload -A luci-milo --app-dir $(projdir)/appengine default pubsub api
+ gae.py upload -A luci-milo --app-dir $(projdir)/appengine/frontend default pubsub api
up-default:
- gae.py upload -A luci-milo --app-dir $(projdir)/appengine default
+ gae.py upload -A luci-milo --app-dir $(projdir)/appengine/frontend default
up-pubsub:
- gae.py upload -A luci-milo --app-dir $(projdir)/appengine pubsub
+ gae.py upload -A luci-milo --app-dir $(projdir)/appengine/frontend pubsub
up-api:
- gae.py upload -A luci-milo --app-dir $(projdir)/appengine api
+ gae.py upload -A luci-milo --app-dir $(projdir)/appengine/frontend api
up-dispatch:
appcfg.py -A luci-milo update_dispatch $(projdir)/appengine/frontend
-up-dev:
+up-dev: up-dev-logs
gae.py upload -A luci-milo-dev --app-dir $(projdir)/appengine default pubsub api
appcfg.py -A luci-milo-dev update_dispatch $(projdir)/appengine/frontend
+up-dev-default:
+ gae.py upload -A luci-milo-dev --app-dir $(projdir)/appengine/frontend default
+
+up-dev-logs:
+ gcloud app deploy --project luci-milo-dev --version dev $(projdir)/appengine/logs/module-logs.yaml
+
test:
go test ./...
« no previous file with comments | « no previous file | milo/appengine/common/middleware.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698