# Grimlock Backend Configuration # API Keys ANTHROPIC_API_KEY=your-anthropic-api-key-here # Server Configuration HOST=0.0.0.0 PORT=8000 DEBUG=true # Database DATABASE_URL=postgresql://grimlock:grimlock@localhost:5432/grimlock # Security SECRET_KEY=your-secret-key-change-in-production-use-openssl-rand-hex-32 # Context Configuration CONTEXT_PATH=/app/context REPOS_PATH=/app/repos # AI Configuration AI_MODEL=claude-sonnet-4-5-20250514 AI_MAX_TOKENS=4096 AI_TEMPERATURE=0.7 # Logging LOG_LEVEL=INFO