postiz/apps/workers/src/main.ts

26 lines
620 B
TypeScript

import { initializeSentry } from '@gitroom/nestjs-libraries/sentry/initialize.sentry';
initializeSentry('workers');
import { NestFactory } from '@nestjs/core';
import { MicroserviceOptions } from '@nestjs/microservices';
import { BullMqServer } from '@gitroom/nestjs-libraries/bull-mq-transport-new/strategy';
import { AppModule } from './app/app.module';
async function start() {
process.env.IS_WORKER = 'true';
// some comment again
const app = await NestFactory.createMicroservice<MicroserviceOptions>(
AppModule,
{
strategy: new BullMqServer(),
}
);
await app.listen();
}
start();