2024-09-17 12:11:39 +08:00
|
|
|
import sentry_sdk
|
|
|
|
from fastapi import FastAPI
|
|
|
|
from fastapi.routing import APIRoute
|
|
|
|
from starlette.middleware.cors import CORSMiddleware
|
|
|
|
from fastapi.staticfiles import StaticFiles
|
|
|
|
from app.api.main import api_router
|
|
|
|
from app.core.config import settings
|
|
|
|
|
|
|
|
|
|
|
|
def custom_generate_unique_id(route: APIRoute) -> str:
|
|
|
|
return f"{route.tags[0]}-{route.name}"
|
|
|
|
|
|
|
|
|
|
|
|
if settings.SENTRY_DSN and settings.ENVIRONMENT != "local":
|
|
|
|
sentry_sdk.init(dsn=str(settings.SENTRY_DSN), enable_tracing=True)
|
|
|
|
|
|
|
|
app = FastAPI(
|
|
|
|
title=settings.PROJECT_NAME,
|
|
|
|
openapi_url=f"{settings.API_V1_STR}/openapi.json",
|
|
|
|
generate_unique_id_function=custom_generate_unique_id,
|
|
|
|
)
|
|
|
|
app.mount("/static", StaticFiles(directory="static"), name="static")
|
|
|
|
# Set all CORS enabled origins
|
|
|
|
if settings.BACKEND_CORS_ORIGINS:
|
|
|
|
app.add_middleware(
|
|
|
|
CORSMiddleware,
|
|
|
|
allow_origins=[
|
|
|
|
str(origin).strip("/") for origin in settings.BACKEND_CORS_ORIGINS
|
2024-10-05 11:09:16 +08:00
|
|
|
] + ["http://localhost:3000"]+["http://localhost:5173"]+["http://localhost:5173/aboutUs"],
|
2024-09-17 12:11:39 +08:00
|
|
|
allow_credentials=True,
|
|
|
|
allow_methods=["*"],
|
|
|
|
allow_headers=["*"],
|
2024-10-03 10:28:33 +08:00
|
|
|
|
2024-09-17 12:11:39 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
app.include_router(api_router, prefix=settings.API_V1_STR)
|