Files
Web-on-the-Fly/gunicorn.conf.py
T
ducoterra cd480430b3
Build and Push Containers / test (push) Successful in 9s
Build and Push Containers / build-and-push (push) Successful in 18s
add queue system
2026-08-01 21:42:38 -04:00

12 lines
178 B
Python

from typing import Any
import app
bind = "0.0.0.0:5000"
workers = 2
timeout = 300
def post_fork(server: Any, worker: Any) -> None:
app.gunicorn_post_fork(server, worker)