From 05e245082363a4f39651309836dd78c912e90bb8 Mon Sep 17 00:00:00 2001 From: Maxim Stewart Date: Sun, 23 Feb 2020 23:45:27 -0600 Subject: [PATCH] updated readme file --- README.md | 23 +++++++++++++++++++---- src/{start-Linux.sh => start-linux.sh} | 0 2 files changed, 19 insertions(+), 4 deletions(-) rename src/{start-Linux.sh => start-linux.sh} (100%) 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