# Supabase Configuration
# Get these from your Supabase project settings

# Your Supabase project URL
NEXT_PUBLIC_SUPABASE_URL=your_supabase_url_here

# Your Supabase anon key (public key)
NEXT_PUBLIC_SUPABASE_ANON_KEY=your_supabase_anon_key_here

# Your Supabase service role key (private key - for admin operations)
# Get this from: Supabase Dashboard → Settings → API → Service Role Key
SUPABASE_SERVICE_ROLE_KEY=your_supabase_service_role_key_here

# Admin User Creation
# These are used by the create-admin-user.js script
ADMIN_EMAIL=admin@predictionmarket.com
ADMIN_PASSWORD=AdminPassword123!
ADMIN_USERNAME=admin

# Optional: Custom admin credentials
# ADMIN_EMAIL=your_admin_email@example.com
# ADMIN_PASSWORD=YourSecurePassword123!
# ADMIN_USERNAME=your_admin_username

# Email Configuration (SMTP)
# Configure these for email notifications to work
SMTP_HOST=smtp.gmail.com
SMTP_PORT=587
SMTP_SECURE=false
SMTP_USER=your_email@gmail.com
SMTP_PASS=your_app_password

# Site URL for email links
NEXT_PUBLIC_SITE_URL=http://localhost:3000
