Files
JQC_features/gunicorn.conf.py
T
2026-07-22 14:50:16 -04:00

9 lines
146 B
Python

bind = "127.0.0.1:8000"
workers = 3
worker_class = "sync"
timeout = 30
accesslog = "-"
errorlog = "-"
# app.py exposes `app`
wsgi_app = "app:app"