Skip to content

Commit 92c5e96

Browse files
authored
Don't call poetry inside the Makefile (#101)
1 parent 3a4ac02 commit 92c5e96

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ help: # show help for each of the Makefile recipes
77
@grep -E '^[a-zA-Z0-9 _-]+:.*#' Makefile | while read -r l; do printf "\033[1;32m$$(echo $$l | cut -f 1 -d':')\033[00m:$$(echo $$l | cut -f 2- -d'#')\n"; done
88

99
local: # run app in local environment
10-
poetry run streamlit run app.py
10+
streamlit run app.py
1111

1212
build_container: # build container locally
1313
$(ENGINE) build -t $(TARGET) -f Dockerfile

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ The widget allows users to modify vaccine allocation choices, between- and withi
1515
### Run the app locally
1616

1717
1. Enable [poetry](https://python-poetry.org/) with `poetry install`
18-
2. To run the app: `make`, which calls `streamlit run scripts/app.py`
18+
2. To run the app: `make` (or `poetry run make`), which calls `streamlit run scripts/app.py`
1919
3. In a browser, visit: `http://localhost:8501/`
2020

2121
### Run the app locally using containers

0 commit comments

Comments
 (0)