30 lines
442 B
Markdown
30 lines
442 B
Markdown
# Blueprint Template
|
|
|
|
A minimal template for creating [Flask Blueprints](https://flask.palletsprojects.com/en/stable/blueprints/).
|
|
|
|
## Set Up
|
|
|
|
1. clone
|
|
|
|
```
|
|
git clone git@git.sr.ht:~ayoayco/flask-blueprint-template
|
|
```
|
|
|
|
2. initialize python env
|
|
|
|
```
|
|
cd flask-blueprint-template
|
|
python3 -m venv .venv
|
|
```
|
|
|
|
3. activate the virtual environment
|
|
|
|
```
|
|
. .venv/bin/activate
|
|
```
|
|
|
|
4. install modules
|
|
|
|
```
|
|
python -m pip install -r requirements.txt
|
|
```
|