ai-demo/run_debug.py

17 lines
358 B
Python
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

"""
调试模式启动脚本
专门用于 PyCharm 调试器运行,禁用 reload 和多进程
"""
import uvicorn
from app.main import app
from app.config import settings
if __name__ == "__main__":
# 直接运行 app不使用 reload
uvicorn.run(
app,
host=settings.host,
port=settings.port,
log_level="info"
)