File tree Expand file tree Collapse file tree 1 file changed +16
-1
lines changed Expand file tree Collapse file tree 1 file changed +16
-1
lines changed Original file line number Diff line number Diff line change 5
5
### One-line command (new installation)
6
6
7
7
``` 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
9
24
```
10
25
11
26
## Re-running the application
You can’t perform that action at this time.
0 commit comments