# ============================================ # Docker / Production Environment Template # ============================================ # Copy this file to .env.docker and update with your server IP/domain # IMPORTANT: Update NEXTAUTH_URL with your server IP or domain name # Examples: # - IP: NEXTAUTH_URL="http://192.168.1.190:3000" # - Domain: NEXTAUTH_URL="http://your-domain.com" # - HTTPS: NEXTAUTH_URL="https://your-domain.com" NEXTAUTH_URL="http://YOUR_SERVER_IP:3000" # ============================================ # AI Provider Configuration # ============================================ AI_PROVIDER=ollama OLLAMA_API_URL="http://ollama:11434" # ============================================ # Email Configuration (Optional) # ============================================ # Uncomment and configure for email features (password reset, reminders) # SMTP_HOST="smtp.gmail.com" # SMTP_PORT="587" # SMTP_USER="your-email@gmail.com" # SMTP_PASS="your-app-password" # SMTP_FROM="noreply@memento.app" # ============================================ # OpenAI (Optional - for GPT models) # ============================================ # OPENAI_API_KEY="sk-..."