Compare commits

...

2 Commits

Author SHA1 Message Date
joelson b034330e34 fix: add console log to indicate API is running on port 8066
Deploy vendaweb-api / build-and-push-deploy (push) Successful in 2m44s Details
2026-01-05 14:05:40 -03:00
joelson 61cdae600c fix: ensure server listens on all network interfaces in main.ts 2026-01-05 14:05:14 -03:00
1 changed files with 2 additions and 2 deletions

View File

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