No description
Find a file
2025-02-09 12:59:20 +01:00
.gitignore initial commit 2025-02-09 12:59:20 +01:00
__init__.py initial commit 2025-02-09 12:59:20 +01:00
app.py initial commit 2025-02-09 12:59:20 +01:00
blueprint.py initial commit 2025-02-09 12:59:20 +01:00
LICENSE initial commit 2025-02-09 12:59:20 +01:00
README.md initial commit 2025-02-09 12:59:20 +01:00
requirements.txt initial commit 2025-02-09 12:59:20 +01:00

Blueprint Template

A minimal template for creating Flask Blueprints.

Set Up

  1. clone
git clone git@git.sr.ht:~ayoayco/flask-blueprint-template
  1. initialize python env
cd flask-blueprint-template
python3 -m venv .venv
  1. activate the virtual environment
. .venv/bin/activate
  1. install modules
python -m pip install -r requirements.txt