-
stevereis authored1e77e42b
main.ts 249 B
import { NestFactory } from '@nestjs/core';
import { AppModule } from './main/app.module';
async function bootstrap() {
const app = await NestFactory.create(AppModule, { cors: true });
await app.listen(process.env.GATEWAY_PORT);
}
bootstrap();