加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
main.py 615 Bytes
一键复制 编辑 原始数据 按行查看 历史
amisadmin 提交于 2022-05-11 10:16 . style: reformat code
from fastapi import FastAPI
from starlette.responses import RedirectResponse
from core.adminsite import site, auth, scheduler
from apps import blog
app = FastAPI(debug=True)
# 导入已注册的后台管理类
blog.setup(app)
# 挂载后台管理系统
site.mount_app(app)
@app.get('/')
async def index():
return RedirectResponse(url=site.router_path)
@app.on_event("startup")
async def startup():
scheduler.start()
await site.create_db_and_tables()
await auth.create_role_user(role_key='admin')
await auth.create_role_user(role_key='vip')
await auth.create_role_user(role_key='test')
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化