Health checks
Checking if the system is healthy.
yarn add @nestjs/terminusnest g res health@HealthCheck()
@Public()
@Get()
check() {
return this.healthService.check();
}private readonly health: HealthCheckService,
private readonly database: TypeOrmHealthIndicator,Last updated