This commit is contained in:
2025-12-15 13:34:15 +01:00
parent 217337862c
commit 129c63c362
26 changed files with 1353 additions and 0 deletions

11
apps/api/src/main.ts Normal file
View File

@@ -0,0 +1,11 @@
import 'reflect-metadata'; // For NestJS DI (before any other imports)
import { NestFactory } from '@nestjs/core';
import { AppModule } from './app.module';
async function bootstrap() {
const app = await NestFactory.create(AppModule);
await app.listen(3000);
}
bootstrap();