import { TypeOrmModuleOptions } from '@nestjs/typeorm';

export const typeOrmConfig: TypeOrmModuleOptions = {
  type: 'postgres',
  host: 'localhost',
  port: 5432,
  username: 'your_db_user',
  password: 'your_db_password',
  database: 'ai_media_db',
  entities: [__dirname + '/../**/*.entity.{ts,js}'],
  synchronize: true, 
};
