add auth service to monorepo

This commit is contained in:
Ammar Qaffaf
2024-02-12 23:50:44 +03:00
parent 220261bec9
commit 117c42d034
19 changed files with 152 additions and 13 deletions

8
apps/auth/src/main.ts Normal file
View File

@ -0,0 +1,8 @@
import { NestFactory } from '@nestjs/core';
import { AuthModule } from './auth.module';
async function bootstrap() {
const app = await NestFactory.create(AuthModule);
await app.listen(6001);
}
bootstrap();