fix: update server port from 8067 to 8065
All checks were successful
Deploy NestJS API / build-and-push-deploy (push) Successful in 1m59s

This commit is contained in:
2026-01-02 19:38:20 -05:00
parent f9ba12c43f
commit 2ff13691b0

View File

@@ -20,6 +20,6 @@ async function bootstrap() {
.build(); .build();
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(8067); await app.listen(8065);
} }
bootstrap(); bootstrap();