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
46
46
## Run the Streamlit Web App
47
47
48
48
``` bash
49
+ ASSETS=./defaults/assets \
49
50
PARAMETERS=-./defaults/webapp.cfg streamlit run st_app.py
50
51
```
51
52
52
53
## Run the Command Line Interface
53
54
54
55
``` bash
56
+ ASSETS=./defaults/assets \
55
57
PARAMETERS=./defaults/cli.cfg penn_chime
56
58
```
57
59
@@ -66,6 +68,7 @@ penn_chime --help
66
68
If you want a different set of default parameters, you may use your own configuration file.
67
69
68
70
``` bash
71
+ ASSETS=./defaults/assets \
69
72
PARAMETERS=./defaults/yours.cfg streamlit run st_app.py
70
73
```
71
74
@@ -77,7 +80,9 @@ Be sure to include `--mitigation-date` in the file if social distancing was impl
77
80
If you need to run the application on a different port than the default (8000), you can set an environment variable.
78
81
79
82
``` 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
81
86
```
82
87
83
88
## Project Layout
You can’t perform that action at this time.
0 commit comments