integrate/Makefile

13 lines
183 B
Makefile
Raw Normal View History

2022-03-02 16:22:11 +01:00
init:
python3 -m venv env
. ./env/bin/activate
pip3 install -r requirements.txt
run:
./env/bin/uvicorn app.main:app --reload
test:
2022-03-03 16:36:08 +01:00
./env/bin/pytest app
.PHONY: init run test