14 lines
241 B
Makefile
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
|