mirror of
https://github.com/fastapi/fastapi.git
synced 2025-12-29 09:08:25 -05:00
* ✨ Allow disabling docs UIs by disabling openapi_url * 📝 Add docs for disabling OpenAPI and docs in prod or other environments * ✅ Add tests for disabling OpenAPI and docs
17 lines
272 B
Python
17 lines
272 B
Python
from fastapi import FastAPI
|
|
from pydantic import BaseSettings
|
|
|
|
|
|
class Settings(BaseSettings):
|
|
openapi_url: str = "/openapi.json"
|
|
|
|
|
|
settings = Settings()
|
|
|
|
app = FastAPI(openapi_url=settings.openapi_url)
|
|
|
|
|
|
@app.get("/")
|
|
def root():
|
|
return {"message": "Hello World"}
|