Files
dvbooking/src/main.ts
Roland Schneider edec8c0cf9 initial commit
2025-10-27 08:36:46 +01:00

9 lines
228 B
TypeScript

import { NestFactory } from '@nestjs/core';
import { AppModule } from './app.module';
async function bootstrap() {
const app = await NestFactory.create(AppModule);
await app.listen(process.env.PORT ?? 3000);
}
bootstrap();