17 lines
330 B
Python
17 lines
330 B
Python
"""本地启动:python run.py(需先 config.yaml + venv)。"""
|
|
|
|
from __future__ import annotations
|
|
|
|
import uvicorn
|
|
|
|
from app.config import load_settings
|
|
|
|
if __name__ == "__main__":
|
|
s = load_settings()
|
|
uvicorn.run(
|
|
"app.main:app",
|
|
host=s.app.host,
|
|
port=s.app.port,
|
|
reload=False,
|
|
)
|