File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed
Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -46,12 +46,14 @@ pip install streamlit
4646## Run the Streamlit Web App
4747
4848``` bash
49+ ASSETS=./defaults/assets \
4950PARAMETERS=-./defaults/webapp.cfg streamlit run st_app.py
5051```
5152
5253## Run the Command Line Interface
5354
5455``` bash
56+ ASSETS=./defaults/assets \
5557PARAMETERS=./defaults/cli.cfg penn_chime
5658```
5759
@@ -66,6 +68,7 @@ penn_chime --help
6668If you want a different set of default parameters, you may use your own configuration file.
6769
6870``` bash
71+ ASSETS=./defaults/assets \
6972PARAMETERS=./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
7780If 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
You can’t perform that action at this time.
0 commit comments