Michael Pilosov
3 months ago
2 changed files with 11 additions and 1 deletions
@ -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 |
|||
|
Loading…
Reference in new issue