diff --git a/README.md b/README.md index f5377a1..714e9b7 100644 --- a/README.md +++ b/README.md @@ -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! \ No newline at end of file +Make sure to change the port in the start script as needed. Have fun! diff --git a/src/start-Linux.sh b/src/start-linux.sh similarity index 100% rename from src/start-Linux.sh rename to src/start-linux.sh