add queue system
Build and Push Containers / test (push) Successful in 9s
Build and Push Containers / build-and-push (push) Successful in 18s

This commit is contained in:
2026-08-01 21:42:38 -04:00
parent 2b544c21ae
commit cd480430b3
7 changed files with 224 additions and 5 deletions
+11
View File
@@ -0,0 +1,11 @@
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)