Initial nest setup

This commit is contained in:
Alexis
2023-04-25 17:31:59 +02:00
parent de83d2a400
commit 5b5c0f5f3e
16 changed files with 8673 additions and 1 deletions

8
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(3000);
}
bootstrap();