| 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 ./...
|
|
|
|
|