35 lines
1.1 KiB
TypeScript
35 lines
1.1 KiB
TypeScript
import { Module } from '@nestjs/common';
|
|
import { ConfigModule, ConfigService } from '@nestjs/config';
|
|
import { TypeOrmModule } from '@nestjs/typeorm';
|
|
import { HealthModule } from './health/health.module';
|
|
import { GatewayModule } from './gateway/gateway.module';
|
|
import { MetricsModule } from './metrics/metrics.module';
|
|
|
|
@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'),
|
|
autoLoadEntities: true,
|
|
synchronize: config.get('NODE_ENV') !== 'production',
|
|
logging: config.get('NODE_ENV') !== 'production',
|
|
}),
|
|
}),
|
|
|
|
HealthModule,
|
|
GatewayModule,
|
|
MetricsModule,
|
|
],
|
|
})
|
|
export class AppModule {}
|