加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
main.py 1.07 KB
一键复制 编辑 原始数据 按行查看 历史
编码猿 提交于 2024-02-22 21:39 . 尝试了一些想法,但是不行
from fastapi import FastAPI
from fastapi.staticfiles import StaticFiles
from fastapi.middleware.cors import CORSMiddleware
from src.controller import api_router
from src.config import *
from src.utils import *
def startApp():
# 接口文档配置
app = FastAPI(
title=settings.PROJECT_NAME,
version=settings.PROJECT_VERSION,
description=settings.PROJECT_DESC
)
# 配置路由
app.include_router(api_router, prefix=settings.API_PREFIX)
# 配置静态资源目录
app.mount("/"+settings.STATIC_DIR, StaticFiles(directory=settings.STATIC_DIR), name=settings.STATIC_DIR)
# 跨域配置
app.add_middleware(
CORSMiddleware,
allow_origins=settings.CORS_ORIGINS,
allow_credentials=True,
allow_methods=["*"],
allow_headers=["*"],
)
return app
app = startApp()
if __name__ == "__main__":
import uvicorn
uvicorn.run(
app=settings.APP_NAME,
host=settings.HOST,
port=settings.PORT,
reload=settings.RELOAD
)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化