/ apps / worker / src / main.ts
main.ts
1  import { NestFactory } from '@nestjs/core';
2  import { WorkerModule } from './worker.module';
3  
4  async function bootstrap() {
5    const app = await NestFactory.create(WorkerModule);
6    await app.listen(process.env.port ?? 3000);
7  }
8  bootstrap();