based on Jelmerdejong's flask-app-blueprint
updated the requirements for flask 2 and other
Turso database ready! just modify the env
- make a virtual env
python3 -m venv venv
- activate it
. venv/bin/activate
- install req
pip3 install -r requirements.txt
- modify the .flaskenv
- migrate the db
flask db upgrade
- seed the admin and sample user
flask seed_db
- run the app
flask run
or hot reloadflask --debug run