initial: blog-app snapshot

This commit is contained in:
omo
2026-08-17 17:11:27 +08:00
commit 65cb9d5ead
125 changed files with 14720 additions and 0 deletions

15
gunicorn.conf.py Normal file
View File

@@ -0,0 +1,15 @@
"""Gunicorn configuration for blog-app evaluation.
Stage 3 evaluation only — not committed to deploy.sh unless go decision is made.
"""
bind = "0.0.0.0:8090"
workers = 2
worker_class = "gthread"
threads = 4
timeout = 300 # LLM streaming needs long timeout
graceful_timeout = 30
keepalive = 5
accesslog = "-"
errorlog = "-"
loglevel = "info"