fix: add console log to indicate API is running on port 8066
Deploy vendaweb-api / build-and-push-deploy (push) Successful in 2m44s Details

This commit is contained in:
joelson 2026-01-05 14:05:40 -03:00
parent 61cdae600c
commit b034330e34
1 changed files with 1 additions and 0 deletions

View File

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