import { NestFactory } from "@nestjs/core"; import { AppModule } from "./app/app.module"; async function bootstrap() { const app = await NestFactory.create(AppModule); console.log(`Application is running on: ${process.env.PORT}`); await app.listen(process.env.PORT); } bootstrap();