No description
| .gitignore | ||
| __init__.py | ||
| app.py | ||
| blueprint.py | ||
| LICENSE | ||
| README.md | ||
| requirements.txt | ||
Blueprint Template
A minimal template for creating Flask Blueprints.
Set Up
- clone
git clone git@git.sr.ht:~ayoayco/flask-blueprint-template
- initialize python env
cd flask-blueprint-template
python3 -m venv .venv
- activate the virtual environment
. .venv/bin/activate
- install modules
python -m pip install -r requirements.txt