hypercorn

This commit is contained in:
Michael Pilosov 2024-09-02 02:21:43 +00:00
parent 1c077cd532
commit cec0ae2481
2 changed files with 11 additions and 1 deletions

View File

@ -1,5 +1,13 @@
start:
start: hypercorn
gevent:
gunicorn --worker-class gevent --bind 0.0.0.0:9021 app:app
gthread:
gunicorn --worker-class gthread --threads 4 --bind 0.0.0.0:9021 app:app
hypercorn:
hypercorn --bind 0.0.0.0:9021 app:app
dev:
python app.py

View File

@ -7,5 +7,7 @@ moviepy==1.0.3
pillow==10.3.0
requests==2.32.3
httpx==0.27.0
# uvicorn==0.28.1
hypercorn==0.17.3
# imageio==2.34.1
# griffe>=0.20.0,<1.0.0