9 lines
248 B
TypeScript
9 lines
248 B
TypeScript
import { NestFactory } from '@nestjs/core';
|
|
import { GatewayModule } from './gateway.module';
|
|
|
|
async function bootstrap() {
|
|
const app = await NestFactory.create(GatewayModule);
|
|
await app.listen(process.env.GATEWAY_PORT ?? 3001);
|
|
}
|
|
bootstrap();
|