51 lines
1.6 KiB
TypeScript
51 lines
1.6 KiB
TypeScript
import { Module } from '@nestjs/common';
|
|
import { ConfigModule, ConfigService } from '@nestjs/config';
|
|
import { BullModule } from '@nestjs/bullmq';
|
|
import { TypeOrmModule } from '@nestjs/typeorm';
|
|
import { HealthModule } from './health/health.module';
|
|
import { ProcessorsModule } from './processors/processors.module';
|
|
import { AggregatedMetric } from './entities/aggregated-metric.entity';
|
|
|
|
@Module({
|
|
imports: [
|
|
ConfigModule.forRoot({
|
|
isGlobal: true,
|
|
envFilePath: ['.env.local', '.env'],
|
|
}),
|
|
|
|
TypeOrmModule.forRootAsync({
|
|
inject: [ConfigService],
|
|
useFactory: (config: ConfigService) => ({
|
|
type: 'postgres',
|
|
host: config.get('DATABASE_HOST', 'localhost'),
|
|
port: config.get('DATABASE_PORT', 5432),
|
|
username: config.get('DATABASE_USER', 'analytics'),
|
|
password: config.get('DATABASE_PASSWORD', 'analytics'),
|
|
database: config.get('DATABASE_NAME', 'analytics'),
|
|
entities: [AggregatedMetric],
|
|
autoLoadEntities: true,
|
|
synchronize: config.get('NODE_ENV') !== 'production',
|
|
logging: config.get('NODE_ENV') !== 'production',
|
|
}),
|
|
}),
|
|
|
|
BullModule.forRootAsync({
|
|
inject: [ConfigService],
|
|
useFactory: (config: ConfigService) => ({
|
|
connection: {
|
|
host: config.get('REDIS_HOST', 'localhost'),
|
|
port: config.get('REDIS_PORT', 6379),
|
|
password: config.get('REDIS_PASSWORD') || undefined,
|
|
},
|
|
}),
|
|
}),
|
|
|
|
BullModule.registerQueue({
|
|
name: 'analytics-events',
|
|
}),
|
|
|
|
HealthModule,
|
|
ProcessorsModule,
|
|
],
|
|
})
|
|
export class AppModule {}
|