Title: [Middleware] Implement health check and readiness probe endpoints
Tags: backend, feature, good first issue
Description:
Kubernetes-compatible health and readiness endpoints for load balancers and orchestration.
Acceptance Criteria:
File: src/routes/health.routes.ts
Title:
[Middleware] Implement health check and readiness probe endpointsTags:
backend,feature,good first issueDescription:
Kubernetes-compatible health and readiness endpoints for load balancers and orchestration.
Acceptance Criteria:
GET /health— liveness probe; returns200 { status: "ok", uptime }always (even during DB issues).GET /health/ready— readiness probe; checks DB, Redis, and Stellar RPC; returns200if all pass,503if any fail.{ status, db, redis, stellar, version }.File:
src/routes/health.routes.ts