integrate/Makefile
2022-03-06 12:31:12 +01:00

17 lines
No EOL
319 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
run integration:
docker-compose -f compose.authentik.yml up -d
./env/bin/uvicorn app.main:app --reload --host 0.0.0.0
test:
./env/bin/pytest app
.PHONY: init run test