noaa/app/makefile

14 lines
241 B
Makefile
Raw Permalink Normal View History

2024-09-02 02:21:43 +00:00
start: hypercorn
gevent:
2024-05-31 17:25:40 +00:00
gunicorn --worker-class gevent --bind 0.0.0.0:9021 app:app
2024-09-02 02:21:43 +00:00
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
2024-05-31 17:25:40 +00:00
dev:
python app.py