12 lines
247 B
Python
12 lines
247 B
Python
|
|
"""启动脚本 - 从config读取配置"""
|
||
|
|
import uvicorn
|
||
|
|
from app.config import settings
|
||
|
|
|
||
|
|
if __name__ == "__main__":
|
||
|
|
uvicorn.run(
|
||
|
|
"app.main:app",
|
||
|
|
host="0.0.0.0",
|
||
|
|
port=settings.PORT,
|
||
|
|
reload=settings.DEBUG
|
||
|
|
)
|