integrate/Makefile
Philipp Rothmann 5891616eb4 add wekan api
2022-03-03 16:36:08 +01:00

13 lines
No EOL
183 B
Makefile

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