# ============================================================
# Rebrandly AI - Environment Variables
# For Namecheap Hosting Deployment
# ============================================================

# Application URL
NEXT_PUBLIC_APP_URL=https://rebrandlyai.com

# MySQL Database Configuration (Namecheap cPanel Database)
MYSQL_HOST=localhost
MYSQL_PORT=3306
MYSQL_USER=your_database_user
MYSQL_PASSWORD=your_database_password
MYSQL_DATABASE=rebrandlyai_db

# SMTP Email Configuration (Namecheap Email Hosting)
SMTP_HOST=business187.web-hosting.com
SMTP_PORT=465
SMTP_SECURE=true
SMTP_USER=noreply@rebrandlyai.com
SMTP_PASS=198100@@@@198100@@@@
SMTP_FROM_EMAIL=noreply@rebrandlyai.com
SMTP_FROM_NAME=Rebrandly AI

# Groq API Key (for AI rebranding - uses llama-3.3-70b-versatile)
GROQ_API_KEY=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

# Stripe Configuration
STRIPE_SECRET_KEY=sk_test_your_stripe_secret_key
NEXT_PUBLIC_STRIPE_PUBLISHABLE_KEY=pk_test_your_stripe_publishable_key
STRIPE_WEBHOOK_SECRET=whsec_your_webhook_secret

# Stripe Price IDs (Create these in your Stripe Dashboard)
STRIPE_PRICE_ID_PREMIUM=price_premium_monthly
STRIPE_PRICE_ID_EXTRA_PREMIUM=price_extra_premium_monthly
STRIPE_PRICE_ID_PLATINUM=price_platinum_monthly

# OpenAI API Key (optional - alternative to Groq)
OPENAI_API_KEY=sk-your_openai_api_key

# Session Secret (Generate a random string)
SESSION_SECRET=d3e135a1a0e5541693d126d07888f196b7abb09995a6e0c151b304067ed9332a

# Node Environment
NODE_ENV=production
