17 lines
228 B
Plaintext
17 lines
228 B
Plaintext
# 生产依赖 - 生产环境运行
|
||
# 包含base.txt的所有依赖
|
||
-r base.txt
|
||
|
||
# WSGI服务器
|
||
gunicorn>=21.2.0
|
||
|
||
# 或使用uWSGI(二选一)
|
||
# uwsgi>=2.0.21
|
||
|
||
# 进程管理
|
||
supervisor>=4.2.5
|
||
|
||
# 性能监控
|
||
psutil>=5.9.0
|
||
|