加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
main.py 1.08 KB
一键复制 编辑 原始数据 按行查看 历史
wu-clan 提交于 2024-03-23 18:36 . 重构后端架构(覆盖推送)
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from pathlib import Path
import uvicorn
from common.log import log
from core.conf import settings
from core.registrar import register_app
app = register_app()
if __name__ == '__main__':
try:
log.info(
"""\n
/$$$$$$$$ /$$ /$$$$$$ /$$$$$$$ /$$$$$$
| $$_____/ | $$ /$$__ $$| $$__ $$|_ $$_/
| $$ /$$$$$$ /$$$$$$$ /$$$$$$ | $$ | $$| $$ | $$ | $$
| $$$$$|____ $$ /$$_____/|_ $$_/ | $$$$$$$$| $$$$$$$/ | $$
| $$__/ /$$$$$$$| $$$$$$ | $$ | $$__ $$| $$____/ | $$
| $$ /$$__ $$ |____ $$ | $$ /$$| $$ | $$| $$ | $$
| $$ | $$$$$$$ /$$$$$$$/ | $$$$/| $$ | $$| $$ /$$$$$$
|__/ |_______/|_______/ |___/ |__/ |__/|__/ |______/
"""
)
uvicorn.run(
app=f'{Path(__file__).stem}:app',
host=settings.UVICORN_HOST,
port=settings.UVICORN_PORT,
reload=settings.UVICORN_RELOAD,
)
except Exception as e:
log.error(f'❌ FastAPI start filed: {e}')
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化