Skip to content

Commit d1333db

Browse files
Update docs
- [x] Docs updated to include $ASSETS
1 parent b19fd47 commit d1333db

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

docs/contributing/app-dev.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,14 @@ pip install streamlit
4646
## Run the Streamlit Web App
4747

4848
```bash
49+
ASSETS=./defaults/assets \
4950
PARAMETERS=-./defaults/webapp.cfg streamlit run st_app.py
5051
```
5152

5253
## Run the Command Line Interface
5354

5455
```bash
56+
ASSETS=./defaults/assets \
5557
PARAMETERS=./defaults/cli.cfg penn_chime
5658
```
5759

@@ -66,6 +68,7 @@ penn_chime --help
6668
If you want a different set of default parameters, you may use your own configuration file.
6769

6870
```bash
71+
ASSETS=./defaults/assets \
6972
PARAMETERS=./defaults/yours.cfg streamlit run st_app.py
7073
```
7174

@@ -77,7 +80,9 @@ Be sure to include `--mitigation-date` in the file if social distancing was impl
7780
If you need to run the application on a different port than the default (8000), you can set an environment variable.
7881

7982
```bash
80-
STREAMLIT_SERVER_PORT=1234 PARAMETERS=./defaults/webapp.cfg streamlit run st_app.py
83+
ASSETS=./defaults/assets \
84+
STREAMLIT_SERVER_PORT=1234 \
85+
PARAMETERS=./defaults/webapp.cfg streamlit run st_app.py
8186
```
8287

8388
## Project Layout

0 commit comments

Comments
 (0)