Files
backend/apps/auth/src/main.ts
Ammar Qaffaf ce4869aa5d change ports
2024-02-20 14:04:18 +03: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();