mirror of
https://github.com/SyncrowIOT/backend.git
synced 2025-11-26 12:54:54 +00:00
add auth service to monorepo
This commit is contained in:
8
apps/auth/src/main.ts
Normal file
8
apps/auth/src/main.ts
Normal 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();
|
||||
Reference in New Issue
Block a user