sonarQ test on PR #1

Merged
andrej merged 15 commits from dev into main 2026-05-12 10:38:22 +00:00
Showing only changes of commit 7ff75ea179 - Show all commits

9
src/main.ts Normal file
View File

@@ -0,0 +1,9 @@
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);
console.log(`sonar-test-nest4 listening on :${process.env.PORT ?? 3000}`);
}
bootstrap();