fix: update health check response status message to 'JURUNENSE HOME CENTER'
Deploy NestJS API / build-and-push-deploy (push) Successful in 2m42s Details

This commit is contained in:
JuruSysadmin 2026-01-06 10:59:26 -03:00
parent 7b2f13ab91
commit 1760934db3
2 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@ export class AppController {
@Get('health')
@ApiOperation({ summary: 'Health check' })
healthCheck() {
return { status: ':ok 4 ' };
return { status: 'JURUNENSE HOME CENTER ' };
}
}

View File

@ -21,5 +21,5 @@ async function bootstrap() {
const document = SwaggerModule.createDocument(app, options);
SwaggerModule.setup("docs", app, document);
await app.listen(8066, '0.0.0.0');}
console.log('API rodando na porta 8066 test 3');
console.log('API rodando na porta 8066 test 4');
bootstrap();