Added init-azure script to makefile

This commit is contained in:
Garrett Luu 2020-06-23 18:24:49 -07:00
parent f32ce495d0
commit f3fb4c21ac

@ -9,8 +9,12 @@ aws: lambda-proxy
lambda-proxy:
cd LambdaProxy; mkdir -p node_modules; npm install xlsx busboy; sam local start-api; cd -
.PHONY: init-azure
init-azure:
cd AzureHTTPTrigger; mkdir -p node_modules; npm install xlsx formidable fs
.PHONY: azure
azure:
azure: init-azure
func start
.PHONY: azure-server