import { NestFactory } from '@nestjs/core'; import { ValidationPipe, Logger } from '@nestjs/common'; import { SwaggerModule, DocumentBuilder } from '@nestjs/swagger'; import { AppModule } from './app.module'; import { GlobalExceptionFilter } from './shared/filters/global-exception.filter'; import { LoggingInterceptor } from './shared/interceptors/logging.interceptor'; async function bootstrap() { const logger = new Logger('Bootstrap'); const app = await NestFactory.create(AppModule); app.useGlobalFilters(new GlobalExceptionFilter()); app.useGlobalInterceptors(new LoggingInterceptor()); app.useGlobalPipes( new ValidationPipe({ whitelist: true, transform: true, forbidNonWhitelisted: true, }), ); const apiPrefix = process.env.API_PREFIX || 'api/v1'; app.setGlobalPrefix(apiPrefix); const config = new DocumentBuilder() .setTitle('Presence & Analytics Service API') .setDescription('用户活跃度与在线状态服务') .setVersion('1.0') .addBearerAuth() .build(); const document = SwaggerModule.createDocument(app, config); SwaggerModule.setup(`${apiPrefix}/docs`, app, document); const port = parseInt(process.env.APP_PORT || '3011', 10); await app.listen(port); logger.log(`Presence Service running on: http://localhost:${port}/${apiPrefix}`); } bootstrap();