chore: trigger CI from uat for GRO-1754 #81

Merged
Flea Flicker merged 38 commits from fix/gro-1754-uat-ci into main 2026-05-25 23:23:15 +00:00
Showing only changes of commit 06d72b5baf - Show all commits
+3
View File
@@ -59,6 +59,9 @@ app.use(
);
// Health check — no auth required, registered on app at full path before auth middleware
// /health: used by Dockerfile HEALTHCHECK and K8s readinessProbe/livenessProbe (port 3000 direct)
app.get("/health", (c) => c.json({ status: "ok" }));
// /api/health: used by Gateway HTTPRoute (/api/* → API pod)
app.get("/api/health", (c) => c.json({ status: "ok" }));
// Public booking routes — no auth required, must be registered before auth middleware