integrate/Makefile
Philipp Rothmann 5b85957012 asd
2022-04-29 15:59:09 +02:00

31 lines
577 B
Makefile

init:
cp .env.sample .env
python3 -m venv env
. ./env/bin/activate
pip3 install -r requirements.txt
up:
docker context use default
docker-compose -f compose.authentik.yml up -d
docker-compose -f compose.wekan.yml up -d
down:
docker-compose -f compose.authentik.yml down -v
docker-compose -f compose.wekan.yml down -v
run:
./env/bin/uvicorn app.main:app --reload --host 0.0.0.0
test:
./env/bin/pytest app
integration:
./env/bin/uvicorn app.main:app --reload --host 0.0.0.0
requirements:
./env/bin/pip freeze -l > requirements.txt
.PHONY: init run test