mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-15 02:01:10 +02:00
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:
parent
fe8cb3cebb
commit
d1e9c87b1c
1 changed files with 1 additions and 1 deletions
|
|
@ -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();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue