updated readme file
This commit is contained in:
parent
4f076b9497
commit
05e2450823
23
README.md
23
README.md
|
@ -7,15 +7,30 @@ A template to quickly standup a flask webapp with bootstrap and a database.
|
||||||
# Setup
|
# Setup
|
||||||
*** Change directory to Flask-Project-Template/ or rename the folder before doing so.
|
*** Change directory to Flask-Project-Template/ or rename the folder before doing so.
|
||||||
|
|
||||||
``` python3 -m virtualenv ./ ```
|
``` python3 -m virtualenv venv/ ```
|
||||||
|
|
||||||
|
Linux/Mac
|
||||||
``` source bin/activate ```
|
``` source bin/activate ```
|
||||||
|
|
||||||
``` pip install -r requirements.txt ```
|
Windows
|
||||||
|
``` source bin/Scripts/activate ```
|
||||||
|
|
||||||
|
Linux/Mac
|
||||||
|
``` pip install -r requirements-linux.txt ```
|
||||||
|
|
||||||
|
Windows
|
||||||
|
``` pip install -r requirements-windows.txt ```
|
||||||
|
|
||||||
|
|
||||||
``` cd src/ ```
|
``` cd src/ ```
|
||||||
|
|
||||||
``` ./start.sh ```
|
|
||||||
|
Linux/Mac
|
||||||
|
``` ./start-linux.sh ```
|
||||||
|
|
||||||
|
Windows
|
||||||
|
``` ./start-windows.sh ```
|
||||||
|
|
||||||
|
|
||||||
# Notes
|
# Notes
|
||||||
Make sure to change the port in the start script as needed. Have fun!
|
Make sure to change the port in the start script as needed. Have fun!
|
||||||
|
|
Loading…
Reference in New Issue