integrate/Makefile

13 lines
198 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:
2022-03-04 18:51:33 +01:00
./env/bin/uvicorn app.main:app --reload --host 0.0.0.0
2022-03-02 16:22:11 +01:00
test:
2022-03-03 16:36:08 +01:00
./env/bin/pytest app
.PHONY: init run test