SonarQ test on PR #1

Open
andrej wants to merge 14 commits from dev into main
Showing only changes of commit 3ba40f3cce - 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-nest3 listening on :${process.env.PORT ?? 3000}`);
}
bootstrap();