chores: init base nest project with .gitignore and base configuration

Refs: #1
This commit is contained in:
LuckMeelo
2025-08-04 13:23:26 +02:00
parent 9f6a8a9392
commit 000b01f61d
16 changed files with 10670 additions and 0 deletions
+8
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();