# Production Environment Variables
# Copy this to .env and set your actual values

# Database Configuration
DB_HOST=localhost
DB_NAME=mysmartc_howtomalaysia
DB_USER=mysmartc_admin
DB_PASS=admin123#@!

# Admin Authentication
ADMIN_USERNAME=admin
# Hash generated via: php -r "echo password_hash('changeMe', PASSWORD_DEFAULT), PHP_EOL;"
ADMIN_PASSWORD_HASH=$2y$10$88WV4spyASLgpBZIRN4kdueCm/gfJ7ti.cQ0BR.hhHiufNdE//Iaq
ADMIN_EMAIL=yuhanshah.kamal@gmail.com

# Security Settings
APP_ENV=production
APP_DEBUG=false
APP_KEY=generate_32_character_random_key_here

# Feature Toggles
MEMBERSHIP_ENABLED=false

# Email Configuration (if used)
MAIL_HOST=your_smtp_host
MAIL_PORT=587
MAIL_USERNAME=your_email
MAIL_PASSWORD=your_email_password

# External API Keys (if used)
GOOGLE_ANALYTICS_ID=your_ga_id
FACEBOOK_APP_ID=your_fb_app_id
