Created
May 8, 2026 16:35
-
-
Save karthiks/7eaacae309f9962d04beb6df56af1bdd to your computer and use it in GitHub Desktop.
Environment Variables Template for Claude Code with various Vendor Platforms
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ###################################################################################################################################### | |
| # For CC running in Docker Container below are various environment configs with various integration points | |
| # To start CC with worktree enabled start it with `--worktree` flag like `claue --worktree` | |
| # To start CC with specific settings.json file like `lmstudio.settings.json `, start it like `claude --settings lmstudio.settings.json` | |
| ####################################################################################################################################### | |
| ## LM Studio on Windows Desktop | |
| # "host.docker.internal" is Docker Network way of routing to its Windows Host | |
| ANTHROPIC_BASE_URL="http://host.docker.internal:1234/" | |
| ANTHROPIC_AUTH_TOKEN="dummy" | |
| ## Ollama Studio on Windows Desktop | |
| ANTHROPIC_BASE_URL="http://host.docker.internal:11434/" | |
| ANTHROPIC_AUTH_TOKEN="dummy" | |
| ## OpenRouter | |
| ANTHROPIC_BASE_URL="https://openrouter.ai/api" | |
| ANTHROPIC_AUTH_TOKEN="sk-or-v1-...." | |
| ## Groq | |
| ANTHROPIC_BASE_URL="https://api.groq.com/openai/v1" | |
| ANTHROPIC_AUTH_TOKEN="gsk_...." |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment