Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ requires-python = ">=3.12"

dependencies = [
"asgi-correlation-id~=4.3.3",
"brotli_asgi~=1.4.0",
"duckdb~=1.2.2",
"orjson",
"pydantic-settings", # don't specify a version, determined by stac-pydantic
Expand Down
2 changes: 2 additions & 0 deletions src/stac_fastapi/indexed/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
from typing import Final, List

from asgi_correlation_id import CorrelationIdMiddleware
from brotli_asgi import BrotliMiddleware
from fastapi import FastAPI
from fastapi.middleware import Middleware
from fastapi.responses import ORJSONResponse
Expand Down Expand Up @@ -72,6 +73,7 @@ def fastapi_factory() -> FastAPI:
Middleware(ProxyHeaderMiddleware),
Middleware(RequestLogMiddleware),
Middleware(CorrelationIdMiddleware),
Middleware(BrotliMiddleware),
],
)
app = api.app
Expand Down
2 changes: 2 additions & 0 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.