# Database DATABASE_URL="postgresql://user:password@localhost:5432/mirrormatch?schema=public" # NextAuth NEXTAUTH_URL="http://localhost:3000" NEXTAUTH_SECRET="your-secret-key-here-generate-with-openssl-rand-base64-32" AUTH_TRUST_HOST=true # Email Configuration (for production) SMTP_HOST="smtp.example.com" SMTP_PORT="587" SMTP_USER="your-email@example.com" SMTP_PASSWORD="your-email-password" SMTP_FROM="MirrorMatch " # In development, emails will be logged to console or use Ethereal # No SMTP config needed for dev mode