# Application Settings
APP_NAME="RevLinks Training Institute"
APP_URL="http://localhost"
APP_ENV="development"
TIMEZONE="Africa/Lagos"

# Database Configuration
DB_HOST="localhost"
DB_PORT="3306"
DB_NAME="energies_school"
DB_USER="root"
DB_PASSWORD=""
DB_CHARSET="utf8mb4"
DB_COLLATION="utf8mb4_unicode_ci"

# Paystack Configuration
PAYSTACK_PUBLIC_KEY="pk_test_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
PAYSTACK_SECRET_KEY="sk_test_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
PAYSTACK_BASE_URL="https://api.paystack.co"
TUITION_AMOUNT="450000"
CURRENCY="NGN"

# JWT Configuration
JWT_SECRET="your-secret-key-change-in-production-use-long-random-string"
JWT_ALGORITHM="HS256"
JWT_EXPIRATION="86400"

# Email Configuration (PHPMailer)
SMTP_HOST="smtp.resend.com"
SMTP_PORT="587"
SMTP_ENCRYPTION="tls"
SMTP_USERNAME="your-resend-api-key"
SMTP_PASSWORD="your-resend-api-key"
FROM_EMAIL="admissions@revlinks.ng"
FROM_NAME="RevLinks Training Institute"
REPLY_TO_EMAIL="admissions@revlinks.ng"
REPLY_TO_NAME="RevLinks Admissions"
SMTP_DEBUG="0"
SMTP_DEBUG_LEVEL="0"

# File Upload Configuration
MAX_FILE_SIZE="5242880"
ALLOWED_FILE_TYPES="jpg,jpeg,png,pdf,doc,docx"
UPLOAD_PATH="/Applications/XAMPP/xamppfiles/htdocs/revlinks-training-website-v2/api/uploads"

# Pagination Configuration
DEFAULT_PER_PAGE="20"
MAX_PER_PAGE="100"
