18 lines
468 B
TypeScript
18 lines
468 B
TypeScript
import 'source-map-support/register';
|
|
import dayjs from 'dayjs';
|
|
import utc from 'dayjs/plugin/utc';
|
|
dayjs.extend(utc);
|
|
|
|
import { NestFactory } from '@nestjs/core';
|
|
import { AppModule } from '@gitroom/orchestrator/app.module';
|
|
import * as dns from 'node:dns';
|
|
dns.setDefaultResultOrder('ipv4first');
|
|
|
|
async function bootstrap() {
|
|
// some comment again
|
|
const app = await NestFactory.createApplicationContext(AppModule);
|
|
app.enableShutdownHooks();
|
|
}
|
|
|
|
bootstrap();
|