Skip to content

Commit 124618e

Browse files
switch from penn_chime to src
1 parent 01dad3e commit 124618e

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ RUN pip install -q -r requirements.txt
1010

1111
COPY . ./
1212

13-
CMD ["streamlit", "run", "penn_chime/app.py"]
13+
CMD ["streamlit", "run", "src/app.py"]

Procfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
web: STREAMLIT_SERVER_PORT=$PORT streamlit run app.py
1+
web: STREAMLIT_SERVER_PORT=$PORT streamlit run src/app.py

docs/contributing/app-dev.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ See [Streamlit's Getting Started guide](https://docs.streamlit.io/getting_starte
2424
```bash
2525
pipenv shell
2626
pipenv install
27-
streamlit run penn_chime/app.py
27+
streamlit run src/app.py
2828
```
2929

3030
### With `conda`
@@ -33,7 +33,7 @@ streamlit run penn_chime/app.py
3333
conda env create -f environment.yml
3434
source activate chime
3535
pip install streamlit
36-
streamlit run penn_chime/app.py
36+
streamlit run src/app.py
3737
```
3838

3939
### Choosing a Different Port
@@ -42,7 +42,7 @@ If you need to run the application on a different port than the default (8000),
4242

4343
```bash
4444
export STREAMLIT_SERVER_PORT=1234
45-
streamlit run penn_chime/app.py
45+
streamlit run src/app.py
4646
```
4747

4848
## Project Layout

0 commit comments

Comments
 (0)