Skip to content

Commit 780f15f

Browse files
authored
Update README.md
1 parent a663210 commit 780f15f

File tree

1 file changed

+16
-1
lines changed

1 file changed

+16
-1
lines changed

README.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,22 @@
55
### One-line command (new installation)
66

77
```bash
8-
git clone https://github.com/mikbuch/flask_minimal_example && cd flask_minimal_example && sudo apt-get install python3-pip && sudo pip3 install pipenv && pipenv install --python $(which python3) && sudo $(pipenv --venv)/bin/flask run --host=0.0.0.0 -p 80
8+
git clone https://github.com/mikbuch/flask_minimal_example && \
9+
cd flask_minimal_example && \
10+
sudo apt-get install python3-pip && \
11+
sudo pip3 install pipenv && \
12+
pipenv install --python $(which python3) && \
13+
sudo $(pipenv --venv)/bin/flask run --host=0.0.0.0 -p 80
14+
```
15+
16+
#### Cleanup
17+
18+
In order to remove the application:
19+
20+
```bash
21+
pipenv --rm && \
22+
cd .. && \
23+
rm -rf flask_minimal_example
924
```
1025

1126
## Re-running the application

0 commit comments

Comments
 (0)