From b7d7a231c591291ce999e74d14bf66bfc667e76b Mon Sep 17 00:00:00 2001 From: Codex Date: Wed, 1 Jul 2026 12:27:38 +0300 Subject: [PATCH] Expose root healthcheck endpoint --- apps/api/src/app.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/api/src/app.ts b/apps/api/src/app.ts index 715ee66..be790a1 100644 --- a/apps/api/src/app.ts +++ b/apps/api/src/app.ts @@ -66,7 +66,7 @@ app.get('/api/health', async (_req, res) => { } }); -app.get('/api/healthcheck', async (_req, res) => { +app.get(['/healthcheck', '/api/healthcheck'], async (_req, res) => { try { await Promise.race([ db.raw('select 1'),