import { NestFactory } from '@nestjs/core'; import { AppModule } from './app.module'; import { ConfigService } from '@nestjs/config'; import { Logger } from '@nestjs/common'; async function bootstrap() { const logger = new Logger('Bootstrap'); const app = await NestFactory.create(AppModule); const configService = app.get(ConfigService); const port = configService.get('port', 3310); await app.listen(port); logger.log(`Mana Gateway Bot running on port ${port}`); logger.log(`Health check: http://localhost:${port}/health`); } bootstrap();