File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ import { HttpExceptionFilter } from '@gitroom/nestjs-libraries/services/exceptio
1616import { ConfigurationChecker } from '@gitroom/helpers/configuration/configuration.checker' ;
1717import { 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 ( ) ;
Original file line number Diff line number Diff line change @@ -4,9 +4,9 @@ initializeSentry('cron');
44import { NestFactory } from '@nestjs/core' ;
55import { 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 ( ) ;
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ import { BullMqServer } from '@gitroom/nestjs-libraries/bull-mq-transport-new/st
88
99import { 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 ( ) ;
You can’t perform that action at this time.
0 commit comments