async function bootstrap() { const app = await NestFactory.create(AppModule); - await app.listen(3000); + const PORT = Number(process.env.PORT) || 8080; + await app.listen(PORT); } bootstrap();