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 src/backend/Cargo.lock

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

6 changes: 6 additions & 0 deletions src/backend/services/analytics-api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@ clickhouse = { workspace = true }
axum = { workspace = true }
sea-orm = { workspace = true }
sea-orm-migration = { workspace = true }
# ToolKit REST registration: routes are declared via `OperationBuilder`
# (not raw `axum::Router::route`) so every endpoint records an OpenAPI
# OperationSpec + auth/license metadata in one place. We do NOT use the
# `bootstrap` host runtime here — the existing `main.rs` keeps serving the
# resulting `axum::Router` directly (handler-registration migration only).
toolkit = { workspace = true }
toolkit-canonical-errors = { workspace = true }
reqwest = { workspace = true }
redis = { workspace = true }
Expand Down
5 changes: 5 additions & 0 deletions src/backend/services/analytics-api/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@
# Stage 1: Builder
FROM rust:1.95-bookworm AS builder

# Install protobuf-compiler (required by grpc-hub → prost-build)
RUN apt-get update && \
apt-get install -y --no-install-recommends protobuf-compiler libprotobuf-dev && \
rm -rf /var/lib/apt/lists/*

WORKDIR /build

# --- Dependency caching layer ---
Expand Down
Loading
Loading