integrate/Makefile
Philipp Rothmann 00de186ad4 authentik api
2022-03-04 18:51:51 +01:00

13 lines
No EOL
198 B
Makefile

init:
python3 -m venv env
. ./env/bin/activate
pip3 install -r requirements.txt
run:
./env/bin/uvicorn app.main:app --reload --host 0.0.0.0
test:
./env/bin/pytest app
.PHONY: init run test