27 lines
902 B
TypeScript
27 lines
902 B
TypeScript
import { NestFactory } from '@nestjs/core';
|
|
import { Logger } from '@nestjs/common';
|
|
import { ConfigService } from '@nestjs/config';
|
|
import { MonitorModule } from './monitor.module';
|
|
|
|
const logger = new Logger('MonitorService');
|
|
|
|
// 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(MonitorModule);
|
|
const config = app.get(ConfigService);
|
|
const port = config.get<number>('MONITOR_SERVICE_PORT', 3005);
|
|
await app.listen(port);
|
|
logger.log(`monitor-service running on port ${port}`);
|
|
}
|
|
bootstrap().catch((err) => {
|
|
logger.error(`Failed to start monitor-service: ${err.message}`, err.stack);
|
|
process.exit(1);
|
|
});
|