import { DataSource } from 'typeorm'; import { join } from 'path'; export const AppDataSource = new DataSource({ type: 'postgres', host: process.env.DB_HOST || 'localhost', port: parseInt(process.env.DB_PORT || '5432'), username: process.env.DB_USERNAME || 'postgres', password: process.env.DB_PASSWORD || 'postgres', database: process.env.DB_NAME || 'serpentrace', synchronize: false, // Set to false when using migrations logging: process.env.NODE_ENV === 'development', entities: [join(__dirname, '../Domain/**/*Aggregate.ts')], migrations: [join(__dirname, './Migrations/*.ts')], migrationsTableName: 'migrations', migrationsRun: false // Let migrations run manually });