flaskr/
: Main app contents
flaskr/static/
: CSS Files
flaskr/templates/
: HTML Files
instance/
: Files contained when the app is running, database is stored here
.venv/
: Virtual environments for flask
-
Install Python
-
git clone https://github.com/FoxServers/connectApp/
-
cd connectApp
-
Install virtualenv
pip install virtualenv
-
Create a virtual environment to isolate packages from system:
virtualenv .venv
-
Initialize that virtual environment: Windows
myenv\Scripts\activate
macOS and Linuxsource myenv/bin/activate
-
Install packages:
pip install -r requirements.txt
-
Run the app:
python app/app.py
-
if you want to reset the database, delete the .sqlite3 file out of the /instance folder