Skip to content

Commit c7511e7

Browse files
authored
Align with quickstart guide instructions (#68)
Closes localstack/docs#795
1 parent 59eb8f3 commit c7511e7

File tree

3 files changed

+6096
-3355
lines changed

3 files changed

+6096
-3355
lines changed

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ usage: ## Show this help
66
@fgrep -h "##" $(MAKEFILE_LIST) | fgrep -v fgrep | sed -e 's/\\$$//' | sed -e 's/##//'
77

88
install: ## Install dependencies
9-
yarn
10-
which serverless || yarn global add serverless
9+
npm install
10+
which serverless || npm install -g serverless
1111
which localstack || pip install localstack
1212

1313
deploy: ## Deploy the app
@@ -24,7 +24,7 @@ send-request: ## Send a test request to the deployed application
2424
for i in 1 2 3 4 5 6 7 8 9 10; do echo "Polling for processing result to appear in s3://archive-bucket/..."; awslocal s3 ls s3://archive-bucket/ | grep $$requestID && exit; sleep 3; done
2525

2626
lint: ## Run code linter
27-
@yarn lint
27+
@npm run lint
2828
@flake8 demo
2929

3030
.PHONY: usage install deploy send-request lint

0 commit comments

Comments
 (0)