Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 5 additions & 10 deletions app/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,11 @@ def render(self, content: Any) -> bytes:
- Device endpoints require an `Authorization: Bearer <device_token>` 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=[
{
Expand Down Expand Up @@ -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
Expand Down