| Index: milo/Makefile
|
| diff --git a/milo/Makefile b/milo/Makefile
|
| index 8ea4bc79ea9c5985d03ba3f0a08eb5a8682b434c..81d612cc7a6e65fc35fc8a395cde0b4efde39d1b 100644
|
| --- a/milo/Makefile
|
| +++ b/milo/Makefile
|
| @@ -6,36 +6,36 @@ mkfile_path := $(abspath $(lastword $(MAKEFILE_LIST)))
|
| projdir := $(patsubst %/,%,$(dir $(mkfile_path)))
|
|
|
| dev:
|
| - gae.py devserver --app-dir $(projdir)/appengine -- --host 0.0.0.0 --port 8082 --admin_port 7999 --log_level debug
|
| + gae.py devserver --app-dir $(projdir)/frontend/appengine -- --host 0.0.0.0 --port 8082 --admin_port 7999 --log_level debug
|
|
|
| # This is intentionally not dependent on the others below to avoid
|
| # asking for user confirmation multiple times.
|
| up: up-all up-dispatch
|
|
|
| up-all:
|
| - gae.py upload -A luci-milo --app-dir $(projdir)/appengine/frontend default pubsub api
|
| + gae.py upload -A luci-milo --app-dir $(projdir)/frontend/appengine default pubsub api
|
|
|
| up-default:
|
| - gae.py upload -A luci-milo --app-dir $(projdir)/appengine/frontend default
|
| + gae.py upload -A luci-milo --app-dir $(projdir)/frontend/appengine default
|
|
|
| up-pubsub:
|
| - gae.py upload -A luci-milo --app-dir $(projdir)/appengine/frontend pubsub
|
| + gae.py upload -A luci-milo --app-dir $(projdir)/frontend/appengine pubsub
|
|
|
| up-api:
|
| - gae.py upload -A luci-milo --app-dir $(projdir)/appengine/frontend api
|
| + gae.py upload -A luci-milo --app-dir $(projdir)/frontend/appengine api
|
|
|
| up-dispatch:
|
| - appcfg.py -A luci-milo update_dispatch $(projdir)/appengine/frontend
|
| + appcfg.py -A luci-milo update_dispatch $(projdir)/frontend/appengine
|
|
|
| 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
|
| + gae.py upload -A luci-milo-dev --app-dir $(projdir)/frontend/appengine default pubsub api
|
| + appcfg.py -A luci-milo-dev update_dispatch $(projdir)/frontend/appengine
|
|
|
| up-dev-default:
|
| - gae.py upload -A luci-milo-dev --app-dir $(projdir)/appengine/frontend default
|
| + gae.py upload -A luci-milo-dev --app-dir $(projdir)/frontend/appengine default
|
|
|
| up-dev-logs:
|
| - gcloud app deploy --project luci-milo-dev --version dev $(projdir)/appengine/logs/module-logs.yaml
|
| + gcloud app deploy --project luci-milo-dev --version dev $(projdir)/logs/module-logs.yaml
|
|
|
| test:
|
| go test ./...
|
|
|