Files
coolify-examples/nestjs/src/main.ts
Andras Bacsai 7c3f09da52 nestjs example
2024-06-03 14:26:12 +02:00

9 lines
208 B
TypeScript

import { NestFactory } from '@nestjs/core';
import { AppModule } from './app.module';
async function bootstrap() {
const app = await NestFactory.create(AppModule);
await app.listen(3000);
}
bootstrap();