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

38 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('AuthService');
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 Auth Service')
.setDescription('Authentication & Authorization API - JWT dual-token, registration, login')
.setVersion('1.0')
.addBearerAuth()
.addTag('auth')
.build();
const document = SwaggerModule.createDocument(app, swaggerConfig);
SwaggerModule.setup('docs', app, document);
app.enableShutdownHooks();
const port = process.env.PORT || 3010;
await app.listen(port);
logger.log(`Auth Service running on port ${port}`);
logger.log(`Swagger docs: http://localhost:${port}/docs`);
}
bootstrap();