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

10
backend/src/app.module.ts Normal file
View File

@@ -0,0 +1,10 @@
import { Module } from '@nestjs/common';
import { AppController } from './app.controller';
import { AppService } from './app.service';
@Module({
imports: [],
controllers: [AppController],
providers: [AppService],
})
export class AppModule {}