mirror of https://github.com/pallets/flask.git
10 lines
187 B
Bash
10 lines
187 B
Bash
|
#!/bin/bash
|
||
|
set -e
|
||
|
|
||
|
python3 -m venv .venv
|
||
|
. .venv/bin/activate
|
||
|
pip install -U pip setuptools wheel
|
||
|
pip install -r requirements/dev.txt
|
||
|
pip install -e .
|
||
|
pre-commit install --install-hooks
|