import { NestFactory } from '@nestjs/core'; import { <%= classify(name) %>Module } from './<%= name %>.module'; async function bootstrap() { const app = await NestFactory.create(<%= classify(name) %>Module); await app.listen(process.env.port ?? 3000); } bootstrap();