diff --git a/Makefile b/Makefile index ecc3b02..a57cef4 100644 --- a/Makefile +++ b/Makefile @@ -7,4 +7,4 @@ debug: .PHONY: run run: - uv run -- dotenv run -- gunicorn -w 4 --bind ':$(PORT)' 'src.main:app' + uv run -- dotenv run -- gunicorn diff --git a/gunicorn.conf.py b/gunicorn.conf.py new file mode 100644 index 0000000..ad9a1fd --- /dev/null +++ b/gunicorn.conf.py @@ -0,0 +1,2 @@ +wsgi_app = "src.main:app" +workers = 4