export const environment = {
  production: true,
  
  // Database Configuration (EXPOSED)
  database: {
    host: 'angular-prod-db.internal',
    port: 5432,
    database: 'angular_prod_production',
    username: 'angular_prod_user',
    password: 'AngularProdPassword2024!Secret'
  },
  
  // API Configuration (EXPOSED)
  apiUrl: 'https://api.production.example.com',
  apiKey: 'angular-prod-api-key-abc123def456',
  jwtSecret: 'angular-prod-jwt-secret-xyz789',
  
  // Firebase Configuration (EXPOSED)
  firebase: {
    apiKey: 'AIzaSyAngularProdFirebaseKey1234567890',
    authDomain: 'angular-prod.firebaseapp.com',
    projectId: 'angular-prod-project',
    storageBucket: 'angular-prod.appspot.com',
    messagingSenderId: '123456789012',
    appId: 'angular-prod-app-id-abc123def456'
  },
  
  // Stripe Configuration (EXPOSED)
  stripePublishableKey: 'pk_live_angular_prod_key_abc123def456',
  stripeSecretKey: 'sk_live_angular_prod_secret_xyz789'
};

