forked from orbit-oss/flask
9 lines
187 B
Bash
Executable file
9 lines
187 B
Bash
Executable file
#!/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
|