# ===============================
# Django Environment
# ===============================
# Use "development" or "production"
DJANGO_ENV=production

# Security
SECRET_KEY=replace-with-a-strong-secret-key
DEBUG=False

# Allowed hosts (comma-separated, no spaces!)
# Example for production:
DJANGO_ALLOWED_HOSTS=learn.wamahospital.org,www.learn.wamahospital.org

# Example for local dev:
# DJANGO_ALLOWED_HOSTS=127.0.0.1,localhost

# ===============================
# Database (MySQL via cPanel)
# ===============================
DB_NAME=wamahosp_lmsdb
DB_USER=wamahosp_lmsuser
DB_PASSWORD=wamatraining@db
DB_HOST=localhost
DB_PORT=3306
