import { NestFactory } from '@nestjs/core'; import { ValidationPipe, Logger } from '@nestjs/common'; import { SwaggerModule, DocumentBuilder } from '@nestjs/swagger'; import { AppModule } from './app.module'; async function bootstrap() { const app = await NestFactory.create(AppModule); const logger = new Logger('ClearingService'); app.setGlobalPrefix('api/v1'); app.useGlobalPipes( new ValidationPipe({ whitelist: true, forbidNonWhitelisted: true, transform: true }), ); app.enableCors({ origin: process.env.CORS_ORIGINS?.split(',') || ['http://localhost:3000'], credentials: true, }); const swaggerConfig = new DocumentBuilder() .setTitle('Genex Clearing Service') .setDescription('Settlement, refunds, breakage, ASC 606 accounting, and admin finance') .setVersion('1.0') .addBearerAuth() .addTag('payments') .addTag('admin-finance') .addTag('admin-reports') .build(); const document = SwaggerModule.createDocument(app, swaggerConfig); SwaggerModule.setup('docs', app, document); app.enableShutdownHooks(); const port = process.env.PORT || 3004; await app.listen(port); logger.log(`ClearingService running on port ${port}`); logger.log(`Swagger docs: http://localhost:${port}/docs`); } bootstrap();