gcx/backend/services/notification-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('NotificationService');
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 Notification Service')
.setDescription('Push, SMS, email, in-app notifications and admin broadcast')
.setVersion('1.0')
.addBearerAuth()
.addTag('notifications')
.addTag('admin-notifications')
.build();
const document = SwaggerModule.createDocument(app, swaggerConfig);
SwaggerModule.setup('docs', app, document);
app.enableShutdownHooks();
const port = process.env.PORT || 3008;
await app.listen(port);
logger.log(`NotificationService running on port ${port}`);
logger.log(`Swagger docs: http://localhost:${port}/docs`);
}
bootstrap();