diff --git a/app/main.py b/app/main.py index f897f3c..7979c35 100644 --- a/app/main.py +++ b/app/main.py @@ -64,6 +64,11 @@ def render(self, content: Any) -> bytes: - Device endpoints require an `Authorization: Bearer ` header - Publisher ID is passed via `X-Publisher-ID` header during device registration - Attestation token (Firebase App Check) is passed via `X-Attestation-Token` header + +## Environments + +- **Production:** [api.signedshot.io](https://api.signedshot.io/docs) +- **Development:** [dev-api.signedshot.io](https://dev-api.signedshot.io/docs) (open for testing) """, openapi_tags=[ { @@ -91,16 +96,6 @@ def render(self, content: Any) -> bytes: "description": "Health check endpoints.", }, ], - servers=[ - { - "url": "https://api.signedshot.io", - "description": "Production API", - }, - { - "url": "https://dev-api.signedshot.io", - "description": "Development API (open for testing)", - }, - ], ) # CORS configuration