Switched to NestJS

This commit is contained in:
2022-09-05 09:51:34 +02:00
parent 75e0ad2f6f
commit 87aa032b6b
38 changed files with 3075 additions and 3368 deletions

8
backend/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();