Basic Flask App To Start With
virtualenv -p python3 venv
source venv/bin/activate
pip install -r requirements
yarn
(will install in /app/static/node_modules)
Make sure your local database is running and open it with
psql postgres
Create a new database with CREATE DATABASE flask_template
python db_create.py
python db_migrate.py
In the root directory, make a file called config.py using example_config.py as a template then replace all of the keys with your own
python run.py