feat: configure Redis connection and update server port
All checks were successful
Deploy NestJS API / build-and-push-deploy (push) Successful in 1m56s

This commit is contained in:
2026-01-02 19:23:49 -05:00
parent d400a3febb
commit 699a9191e2
3 changed files with 11 additions and 3 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);
await app.listen(8067);
}
bootstrap();