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 <noreply@anthropic.com>
This commit is contained in:
Till-JS 2026-01-27 03:39:32 +01:00
parent fe8cb3cebb
commit d1e9c87b1c

View file

@ -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();