chore: migrate backend to monorepo apps and biome
This commit is contained in:
8
apps/bookings/src/main.ts
Normal file
8
apps/bookings/src/main.ts
Normal file
@@ -0,0 +1,8 @@
|
||||
import { NestFactory } from '@nestjs/core';
|
||||
import { BookingsModule } from './bookings.module';
|
||||
|
||||
async function bootstrap() {
|
||||
const app = await NestFactory.create(BookingsModule);
|
||||
await app.listen(process.env.BOOKING_PORT ?? 3004);
|
||||
}
|
||||
bootstrap();
|
||||
Reference in New Issue
Block a user