initial project setup

This commit is contained in:
Sven Czarnian
2022-10-22 14:10:51 +02:00
commit c173729016
16 changed files with 14835 additions and 0 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();