# ============================================================= # IntegraChat Environment Variables Template # ============================================================= # Copy this file to .env and fill in your actual values # ============================================================= # SUPABASE CONFIGURATION # ============================================================= SUPABASE_URL=https://your-project.supabase.co SUPABASE_SERVICE_KEY=your_service_role_key_here POSTGRESQL_URL=postgresql://user:password@host:port/database # ============================================================= # LLM CONFIGURATION # ============================================================= # If using local Ollama OLLAMA_URL=http://localhost:11434 OLLAMA_MODEL=llama3.1:latest # Backend selection (optional, defaults to "ollama") LLM_BACKEND=ollama # ============================================================= # MCP SERVER CONFIG # ============================================================= # Legacy FastAPI endpoints (remove once all callers use the unified MCP server) RAG_MCP_URL=http://localhost:8001 WEB_MCP_URL=http://localhost:8002 ADMIN_MCP_URL=http://localhost:8003 # Unified MCP server identifier (namespaced tools) MCP_SERVER_ID=integrachat # ============================================================= # BACKEND CONFIG # ============================================================= APP_ENV=development LOG_LEVEL=info API_PORT=8000 # ============================================================= # OPTIONAL: ALERTING # ============================================================= # ALERT_WEBHOOK=https://hooks.slack.com/services/your/webhook/url