updated readme file

This commit is contained in:
Maxim Stewart 2020-02-23 23:45:27 -06:00
parent 4f076b9497
commit 05e2450823
2 changed files with 19 additions and 4 deletions

View File

@ -7,15 +7,30 @@ A template to quickly standup a flask webapp with bootstrap and a database.
# Setup
*** 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 ```
``` 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/ ```
``` ./start.sh ```
Linux/Mac
``` ./start-linux.sh ```
Windows
``` ./start-windows.sh ```
# 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!