gcx/backend/services/ai-service/src/main.ts

39 lines
1.2 KiB
TypeScript

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('AiService');
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 AI Service')
.setDescription('Anti-corruption layer to external AI agents - chat, credit scoring, pricing, anomaly detection')
.setVersion('1.0')
.addBearerAuth()
.addTag('ai')
.addTag('admin-agent')
.build();
const document = SwaggerModule.createDocument(app, swaggerConfig);
SwaggerModule.setup('docs', app, document);
app.enableShutdownHooks();
const port = process.env.PORT || 3006;
await app.listen(port);
logger.log(`AI Service running on port ${port}`);
logger.log(`Swagger docs: http://localhost:${port}/docs`);
}
bootstrap();