feat: add api liveness and readiness checks

This commit is contained in:
Bastian Wagner
2026-08-17 13:39:15 +02:00
parent db6d62c303
commit 0815f702d2
12 changed files with 327 additions and 5 deletions

View File

@@ -0,0 +1,14 @@
import { Module } from '@nestjs/common';
import {
PostgresModule,
RedisModule,
} from '../../../../libs/infrastructure/src';
import { HealthController } from './health.controller';
import { ReadinessService } from './readiness.service';
@Module({
imports: [PostgresModule, RedisModule],
controllers: [HealthController],
providers: [ReadinessService],
})
export class HealthModule {}