first add files

This commit is contained in:
2025-08-15 14:58:11 +08:00
parent 4291639d4f
commit b745cae8eb
11 changed files with 648 additions and 0 deletions

6
gunicorn_conf.py Normal file
View File

@@ -0,0 +1,6 @@
bind = "0.0.0.0:5000"
workers = 4
worker_class = "gevent" # 使用异步 worker需安装 `gevent`
timeout = 30
accesslog = "-" # 输出到控制台
errorlog = "-"