# ============================================================
# RONCE MEDICAL CENTER — Environment Configuration
# NEVER commit this file to version control
# ============================================================

APP_NAME="Ronce Medical Center"
APP_ENV=production
APP_DEBUG=false
APP_URL=https://your-domain.com

# Database
DB_HOST=localhost
DB_PORT=3306
DB_NAME=ronce_db
DB_USER=ronce_user
DB_PASS=CHANGE_THIS_PASSWORD

# Encryption (generate: php -r "echo bin2hex(random_bytes(32));")
APP_ENCRYPTION_KEY=GENERATE_32_BYTE_HEX_KEY_HERE

# M-Pesa (set MPESA_LIVE=false to use manual mode)
MPESA_LIVE=false
MPESA_CONSUMER_KEY=
MPESA_CONSUMER_SECRET=
MPESA_PASSKEY=
MPESA_SHORTCODE=
MPESA_CALLBACK_URL=https://your-domain.com/mpesa_callback.php

# Email (PHPMailer)
MAIL_ENABLED=false
MAIL_HOST=smtp.gmail.com
MAIL_PORT=587
MAIL_USERNAME=
MAIL_PASSWORD=
MAIL_FROM=noreply@ronce.com
MAIL_FROM_NAME="Ronce Medical Center"

# Session
SESSION_TIMEOUT_MINUTES=60
