diff --git a/app/main.py b/app/main.py index d361189..1e06dcb 100644 --- a/app/main.py +++ b/app/main.py @@ -89,6 +89,9 @@ async def lifespan(app: FastAPI) -> AsyncIterator[None]: description="Mobile and Web API for multAI", version="1.0.0", lifespan=lifespan, + docs_url="/docs" if settings.debug else None, + redoc_url="/redoc" if settings.debug else None, + openapi_url="/openapi.json" if settings.debug else None, )