KTVManager_UI/gunicorn.conf.py

10 lines
180 B
Python
Raw Permalink Normal View History

2025-07-13 16:00:52 +01:00
import os
# Set the environment to production
os.environ['FLASK_ENV'] = 'production'
# Gunicorn config variables
loglevel = "info"
workers = 2
bind = "0.0.0.0:5000"
timeout = 120