- Python 3.12+
- On Windows:
python -m venv venv
venv\Scripts\activate- On macOS/Linux:
python -m venv venv
source venv/bin/activatepip install -r requirements.txtexport FLASK_APP='wsgi.py'
flask db upgradepython wsgi.pyexport FLASK_APP='wsgi.py'
flask db migrate -m "<MIGRATION_MESSAGE>"
flask db upgrade