# ============================================
# LOCAL ENVIRONMENT - WAMP Configuration
# ============================================
# This file is configured for local WAMP development
# NEVER commit this file (it's in .gitignore)

# DATABASE CONFIGURATION (WAMP MySQL)
# Default WAMP MySQL runs on localhost:3306
# Default user: root (no password)
DATABASE_URL="mysql://root@localhost:3306/setaragan_zirak_school"

# For WAMP with password (if you set one):
# DATABASE_URL="mysql://root:your_password@localhost:3306/setaragan_zirak_school"

# NEXTAUTH CONFIGURATION
NEXTAUTH_URL="http://localhost:3000"
# Generate a secure secret: npx auth secret
NEXTAUTH_SECRET="mf53Jl38h9MJq1gHC2OSjBMAoEiLKRMazZWuUrSwEqs=" # Added by `npx auth`. Read more: https://cli.authjs.dev

# EMAIL CONFIGURATION (Shared Hosting SMTP - for production)
# For local testing, you can use Mailtrap or similar service
# Or leave these as-is and test with actual SMTP later
SMTP_HOST="mail.setaraganzirakschool.edu.af"
SMTP_PORT="465"
SMTP_USER="aliraza.r10@setaraganzirakschool.edu.af"
SMTP_PASS="7wC-h9-Ws0_B+-Rr"
SMTP_FROM_EMAIL="noreply@setaraganzirakschool.edu.af"
SMTP_FROM_NAME="Setaragan Zirak School"

# Form Recipients (update these with actual admin emails)
# CONTACT_FORM_RECIPIENT="contact@setaraganzirakschool.edu.af"
CONTACT_FORM_RECIPIENT="aliraza.r10@gmail.com"
ADMISSIONS_FORM_RECIPIENT="aliraza.r10@gmail.com"
NEWSLETTER_FORM_RECIPIENT="aliraza.r10@gmail.com"

# DEVELOPMENT
NODE_ENV="development"
NEXT_PUBLIC_API_URL="http://localhost:3000/api"

# File Upload
MAX_FILE_SIZE="2097152"
ALLOWED_FILE_TYPES="image/jpeg,image/png,image/webp"

# Admin Settings
ADMIN_EMAIL="admin@domain.com"