11 lines
160 B
Makefile
11 lines
160 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
|