it0/packages/services/audit-service/src/main.ts

27 lines
888 B
TypeScript

import { NestFactory } from '@nestjs/core';
import { Logger } from '@nestjs/common';
import { ConfigService } from '@nestjs/config';
import { AuditModule } from './audit.module';
const logger = new Logger('AuditService');
// Prevent process crash from unhandled errors
process.on('unhandledRejection', (reason) => {
logger.error(`Unhandled Rejection: ${reason}`);
});
process.on('uncaughtException', (error) => {
logger.error(`Uncaught Exception: ${error.message}`, error.stack);
});
async function bootstrap() {
const app = await NestFactory.create(AuditModule);
const config = app.get(ConfigService);
const port = config.get<number>('AUDIT_SERVICE_PORT', 3007);
await app.listen(port);
logger.log(`audit-service running on port ${port}`);
}
bootstrap().catch((err) => {
logger.error(`Failed to start audit-service: ${err.message}`, err.stack);
process.exit(1);
});