Skip to content

Commit 104381d

Browse files
committed
feat: force deploy
1 parent 58ca717 commit 104381d

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

apps/backend/src/main.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import { HttpExceptionFilter } from '@gitroom/nestjs-libraries/services/exceptio
1616
import { ConfigurationChecker } from '@gitroom/helpers/configuration/configuration.checker';
1717
import { startMcp } from '@gitroom/nestjs-libraries/chat/start.mcp';
1818

19-
async function bootstrap() {
19+
async function start() {
2020
const app = await NestFactory.create(AppModule, {
2121
rawBody: true,
2222
cors: {
@@ -80,8 +80,8 @@ function checkConfiguration() {
8080

8181
Logger.warn('Configuration issues found: ' + checker.getIssuesCount());
8282
} else {
83-
Logger.log('Configuration check completed without any issues.');
83+
Logger.log('Configuration check completed without any issues');
8484
}
8585
}
8686

87-
bootstrap();
87+
start();

apps/cron/src/main.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ initializeSentry('cron');
44
import { NestFactory } from '@nestjs/core';
55
import { CronModule } from './cron.module';
66

7-
async function bootstrap() {
7+
async function start() {
88
// some comment again
99
await NestFactory.createApplicationContext(CronModule);
1010
}
1111

12-
bootstrap();
12+
start();

apps/workers/src/main.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { BullMqServer } from '@gitroom/nestjs-libraries/bull-mq-transport-new/st
88

99
import { AppModule } from './app/app.module';
1010

11-
async function bootstrap() {
11+
async function start() {
1212
process.env.IS_WORKER = 'true';
1313

1414
// some comment again
@@ -22,4 +22,4 @@ async function bootstrap() {
2222
await app.listen();
2323
}
2424

25-
bootstrap();
25+
start();

0 commit comments

Comments
 (0)