diff options
| author | Shulhan <ms@kilabit.info> | 2019-04-16 13:59:41 +0700 |
|---|---|---|
| committer | Shulhan <m.shulhan@gmail.com> | 2020-01-25 14:16:37 +0700 |
| commit | ee4223c907adb1371aaf818c977ae724e5eac6f2 (patch) | |
| tree | 651252311d9cdb22f768343390e872e25d036411 /Makefile | |
| parent | 020a0d615f7bcdbe3cbf8535a1f7b41353e7c384 (diff) | |
| download | golang-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-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,7 +1,7 @@ .PHONY: serve deploy serve: - goapp serve + dev_appserver.py app.yaml deploy: - goapp deploy + gcloud app deploy |
