feat: force deploy

This commit is contained in:
Nevo David 2025-11-19 21:41:05 +07:00
parent 58ca717a37
commit 104381d839
3 changed files with 7 additions and 7 deletions

View File

@ -16,7 +16,7 @@ import { HttpExceptionFilter } from '@gitroom/nestjs-libraries/services/exceptio
import { ConfigurationChecker } from '@gitroom/helpers/configuration/configuration.checker';
import { startMcp } from '@gitroom/nestjs-libraries/chat/start.mcp';
async function bootstrap() {
async function start() {
const app = await NestFactory.create(AppModule, {
rawBody: true,
cors: {
@ -80,8 +80,8 @@ function checkConfiguration() {
Logger.warn('Configuration issues found: ' + checker.getIssuesCount());
} else {
Logger.log('Configuration check completed without any issues.');
Logger.log('Configuration check completed without any issues');
}
}
bootstrap();
start();

View File

@ -4,9 +4,9 @@ initializeSentry('cron');
import { NestFactory } from '@nestjs/core';
import { CronModule } from './cron.module';
async function bootstrap() {
async function start() {
// some comment again
await NestFactory.createApplicationContext(CronModule);
}
bootstrap();
start();

View File

@ -8,7 +8,7 @@ import { BullMqServer } from '@gitroom/nestjs-libraries/bull-mq-transport-new/st
import { AppModule } from './app/app.module';
async function bootstrap() {
async function start() {
process.env.IS_WORKER = 'true';
// some comment again
@ -22,4 +22,4 @@ async function bootstrap() {
await app.listen();
}
bootstrap();
start();