improvement: docker infrastructure overhauled.

This commit is contained in:
2026-05-03 20:15:39 +03:30
parent a05249e343
commit 5682da87aa
20 changed files with 542 additions and 172 deletions

View File

@@ -22,4 +22,13 @@ export class AppController {
getHello(): string {
return this.appService.getHello();
}
/** Used by Docker / load balancer health checks (GET /api/health) */
@Get('health')
health() {
return {
status: 'ok',
timestamp: new Date().toISOString(),
};
}
}