Files
monie-backend/apps/auth/src/main.ts

9 lines
236 B
TypeScript

import { NestFactory } from '@nestjs/core';
import { AuthModule } from './auth.module';
async function bootstrap() {
const app = await NestFactory.create(AuthModule);
await app.listen(process.env.AUTH_PORT ?? 3000);
}
bootstrap();