chore: migrate backend to monorepo apps and biome
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(process.env.AUTH_PORT ?? 3000);
|
||||
}
|
||||
bootstrap();
|
||||
Reference in New Issue
Block a user