noaa/app/makefile
Michael Pilosov cec0ae2481 hypercorn
2024-09-02 02:21:43 +00:00

14 lines
241 B
Makefile

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