23 lines
327 B
Makefile
23 lines
327 B
Makefile
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
|
|
|
|
create-requirements:
|
|
@poetry export \
|
|
--without-hashes \
|
|
--format=requirements.txt \
|
|
> requirements.txt
|