Initialize NestJS backend with basic structure, Biome setup, and essential configurations

This commit is contained in:
2026-01-04 23:26:27 +01:00
parent 45318dffe3
commit 4b53a8d410
15 changed files with 387 additions and 3 deletions

8
backend/src/main.ts Normal file
View File

@@ -0,0 +1,8 @@
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();