import { NestFactory } from '@nestjs/core'; import { AppModule } from './app.module'; async function bootstrap() { const app = await NestFactory.create(AppModule); const port = process.env.PORT || 3327; await app.listen(port); console.log(`Matrix Chat Bot running on port ${port}`); } bootstrap();