From ee4223c907adb1371aaf818c977ae724e5eac6f2 Mon Sep 17 00:00:00 2001 From: Shulhan Date: Tue, 16 Apr 2019 13:59:41 +0700 Subject: 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". --- Makefile | 4 ++-- 1 file 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 -- cgit v1.3