From d1e9c87b1cb39d8aa0ce5d876104d324c87bd8cc Mon Sep 17 00:00:00 2001 From: Till-JS <101404291+Till-JS@users.noreply.github.com> Date: Tue, 27 Jan 2026 03:39:32 +0100 Subject: [PATCH] fix(todo): correct health check URL in startup log The health endpoint is at /health (excluded from api/v1 prefix), not /api/v1/health. Co-Authored-By: Claude Opus 4.5 --- apps/todo/apps/backend/src/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/todo/apps/backend/src/main.ts b/apps/todo/apps/backend/src/main.ts index 787548de7..273da3d06 100644 --- a/apps/todo/apps/backend/src/main.ts +++ b/apps/todo/apps/backend/src/main.ts @@ -101,7 +101,7 @@ async function bootstrap() { await app.listen(port); logger.log(`Todo API is running on: http://localhost:${port}`); - logger.log(`Health check: http://localhost:${port}/api/v1/health`); + logger.log(`Health check: http://localhost:${port}/health`); } bootstrap();