Files
backend/apps/auth/src/main.ts
Ammar Qaffaf d34bc13d90 change ports
2024-02-21 16:57:14 -05:00

9 lines
211 B
TypeScript

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