Description goes here.
- Install Python 3.6
- Install virtualenv
- Clone the repo:
git clone <repo_url> - Move into the dir:
cd <repo_name> - Initialize the virtual environment:
virtualenv env - Activate the env:
source env/bin/activate - Install dependencies:
pip3 install -r requirements.txt - Add the env variable:
export FLASK_APP=manage.py - Run the config script:
python3 config.py - Init/upgrade the db:
flask db upgrade - Run the app:
flask run - Open page:
http://localhost:5000