fix: update server port from 8065 to 8068
Deploy NestJS API / build-and-push-deploy (push) Successful in 4m29s Details

This commit is contained in:
joelson 2026-01-09 09:27:19 -03:00
parent 6360675ebf
commit df466ddaba
1 changed files with 1 additions and 1 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(8065, '0.0.0.0');}
await app.listen(8068, '0.0.0.0');}
console.log('API rodando na porta 8065 test 4');
bootstrap();