Merge branch 'main' into dev

This commit is contained in:
Timothy Jaeryang Baek
2024-11-11 13:45:13 -08:00
committed by GitHub
7 changed files with 21 additions and 11 deletions

View File

@@ -183,7 +183,7 @@ async def lifespan(app: FastAPI):
app = FastAPI(
docs_url="/docs" if ENV == "dev" else None, redoc_url=None, lifespan=lifespan
docs_url="/docs" if ENV == "dev" else None, openapi_url="/openapi.json" if ENV == "dev" else None, redoc_url=None, lifespan=lifespan
)
app.state.config = AppConfig()