docs: dependencies
This commit is contained in:
parent
ac08d5a715
commit
78371a2b33
2 changed files with 1 additions and 4 deletions
|
@ -13,6 +13,7 @@ Just an example of a way to deploy Python app to Azure using Terraform.
|
|||
cp example.env .env
|
||||
|
||||
# Start local dev
|
||||
just dependencies
|
||||
just run
|
||||
|
||||
# Provision infrastructure
|
||||
|
|
4
justfile
4
justfile
|
@ -12,10 +12,6 @@ run:
|
|||
devbox services start postgresql
|
||||
python src/app.py
|
||||
|
||||
run-docker:
|
||||
docker build -t local/${APP_NAME}:${GIT_SHA} .
|
||||
docker run -it --rm -p 8080:8080 local/${APP_NAME}:${GIT_SHA}
|
||||
|
||||
dependencies:
|
||||
pip install -r src/requirements.txt
|
||||
|
||||
|
|
Reference in a new issue