2 Commits

Author SHA1 Message Date
4975d5547d chore: organize project and update service
Some checks failed
Build (develop) / Promote (main) / build-and-push-deploy (push) Failing after 24s
2026-01-29 12:44:11 -03:00
fa6f0e0f49 chore: organize project and update service 2026-01-29 12:43:41 -03:00
2 changed files with 2 additions and 2 deletions

View File

@@ -1,7 +1,7 @@
name: Build (develop) / Promote (main) name: Build (develop) / Promote (main)
on: on:
push: push:
branches: [main, develop] branches: [main, develop, homolog]
jobs: jobs:
build-and-push-deploy: build-and-push-deploy:

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(8066);
} }
bootstrap(); bootstrap();