| Index: milo/Makefile
|
| diff --git a/milo/Makefile b/milo/Makefile
|
| index b5175044e0f435b49cff845e01cab34a146f0dfe..b8fa009883097bab25db77b0d2627e21caf1c793 100644
|
| --- a/milo/Makefile
|
| +++ b/milo/Makefile
|
| @@ -6,10 +6,30 @@ mkfile_path := $(abspath $(lastword $(MAKEFILE_LIST)))
|
| projdir := $(patsubst %/,%,$(dir $(mkfile_path)))
|
|
|
| dev:
|
| - $(projdir)/../../../../../../luci/appengine/components/tools/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)/appengine -- --host 0.0.0.0 --port 8082 --admin_port 7999 --log_level debug
|
|
|
| -up:
|
| - $(projdir)/../../../../../../luci/appengine/components/tools/gae.py upload -A luci-milo --app-dir $(projdir)/appengine
|
| +# 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 default pubsub api
|
| +
|
| +up-default:
|
| + gae.py upload -A luci-milo --app-dir $(projdir)/appengine default
|
| +
|
| +up-pubsub:
|
| + gae.py upload -A luci-milo --app-dir $(projdir)/appengine pubsub
|
| +
|
| +up-api:
|
| + gae.py upload -A luci-milo --app-dir $(projdir)/appengine api
|
| +
|
| +up-dispatch:
|
| + appcfg.py -A luci-milo update_dispatch $(projdir)/appengine/frontend
|
| +
|
| +up-dev:
|
| + 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
|
|
|
| test:
|
| go test ./...
|
|
|