aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorShulhan <ms@kilabit.info>2019-04-16 13:59:41 +0700
committerShulhan <m.shulhan@gmail.com>2020-01-25 14:16:37 +0700
commitee4223c907adb1371aaf818c977ae724e5eac6f2 (patch)
tree651252311d9cdb22f768343390e872e25d036411 /Makefile
parent020a0d615f7bcdbe3cbf8535a1f7b41353e7c384 (diff)
downloadgolang-id-tour-ee4223c907adb1371aaf818c977ae724e5eac6f2.tar.xz
make: change serve and deploy tasks to use Cloud SDK
Previous serve and deploy use app-engine SDK using CLI "goapp". The latest update on tour (after updating with upstream) use Cloud SDK command "dev_appserver.py" and "gcloud".
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index df1e5fe..c58e597 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
.PHONY: serve deploy
serve:
- goapp serve
+ dev_appserver.py app.yaml
deploy:
- goapp deploy
+ gcloud app deploy