Skip to content

Commit

Permalink
chore: 🤖 use requirements.txt instead of pipenv requirements (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
JingHHe committed Nov 22, 2023
1 parent bfdee63 commit 8cce790
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ setup: ## Set up dependencies
deploy: ## Deploy with serverless framework
@[ "${stage}" ] || ( echo ">> stage is not set call with make deploy stage=<app stage>"; exit 1 )
rm -rf layer/python/
pipenv run pip install -r <(pipenv requirements) --target layer/python
pipenv run pip install -r requirements.txt --target layer/python
pipenv run npx sls deploy --stage=${stage} --verbose

.PHONY: undeploy
Expand Down

0 comments on commit 8cce790

Please sign in to comment.