33 lines
884 B
Python
33 lines
884 B
Python
from fastapi import Depends, FastAPI
|
|
from fastapi.staticfiles import StaticFiles
|
|
from starlette.responses import HTMLResponse
|
|
|
|
from core.events import close_orm, init_orm
|
|
from core.exceptions import exception_handlers
|
|
from core.middleware import middlewares
|
|
from core.security import check_permissions
|
|
from core.utils import load_routers
|
|
|
|
app = FastAPI(
|
|
on_startup=[init_orm],
|
|
on_shutdown=[close_orm],
|
|
middleware=middlewares,
|
|
exception_handlers=exception_handlers,
|
|
)
|
|
|
|
load_routers(app, "router", no_depends="auth", depends=[Depends(check_permissions)])
|
|
|
|
app.mount("/static", StaticFiles(directory="static"), name="static")
|
|
|
|
@app.get("/", response_class=HTMLResponse)
|
|
async def index():
|
|
with open("static/index.html") as f:
|
|
html = f.read()
|
|
return html
|
|
|
|
|
|
if __name__ == "__main__":
|
|
import uvicorn
|
|
|
|
uvicorn.run("main:app", reload=True, port=1855)
|