Project rename and restructure

This commit is contained in:
Eden Kirin
2023-03-25 13:21:07 +01:00
commit 0041b7d43e
21 changed files with 1328 additions and 0 deletions

16
Makefile Normal file
View File

@ -0,0 +1,16 @@
run:
@poetry run \
uvicorn \
main:app \
--host 0.0.0.0 \
--port 8010 \
--workers=1
run-dev:
@poetry run \
uvicorn \
main:app \
--host 0.0.0.0 \
--port 8010 \
--workers=1 \
--reload