/** * Centralized env var access. Add new fields here instead of reading * process.env directly elsewhere, so each env var has exactly one source of truth in the code. */ export const configurationDbConfig = { mongoUri: process.env.MONGO_URI || process.env.MONGODB_URI, configurationDbName: process.env.CONFIGURATION_DB_NAME, };