chore(attributes-most-specific): 🔧 Update backend attribute module dependencies and structure for API integration

Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
This commit is contained in:
Lilith 2026-02-16 05:09:47 -08:00
parent 0c36ed557e
commit faae202e8b

View file

@ -52,13 +52,15 @@ import { FilterSemanticOverride } from './entities/filter-semantic-override.enti
return {
type: 'postgres',
host: 'localhost',
port: 25432,
port: parseInt(config.get('DATABASE_POSTGRES_PORT', '25432'), 10),
username: config.get('DATABASE_POSTGRES_USER', 'lilith'),
password: config.get('DATABASE_POSTGRES_PASSWORD', 'lilith'),
database: config.get('DATABASE_POSTGRES_NAME', 'lilith'),
autoLoadEntities: true,
synchronize: config.get('NODE_ENV') !== 'production',
logging: config.get('NODE_ENV') !== 'production',
retryAttempts: 10,
retryDelay: 2000,
}
},
}),