// Configuration file example
const config = {
  apiKey: process.env.API_KEY,  // Good: using env var
  database: {
    host: "localhost",
    port: 5432,
    password: process.env.DB_PASSWORD  // Good: using env var
  }
};

// This is a clean config file with no hardcoded secrets
module.exports = config;
