-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.claude-yolo.example
More file actions
27 lines (23 loc) · 896 Bytes
/
.claude-yolo.example
File metadata and controls
27 lines (23 loc) · 896 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Claude YOLO - Essential Configuration
#
# Copy to:
# - $XDG_CONFIG_HOME/claude-yolo/.claude-yolo (global, follows XDG spec)
# - ~/.claude-yolo (legacy global location)
# - .claude-yolo (project-specific)
# - .claude-yolo.local (local overrides, gitignored)
#
# Loading order: XDG global → legacy global → project → local
# Git integration (most common need)
VOLUME=~/.ssh:/home/claude/.ssh:ro
VOLUME=~/.gitconfig:/home/claude/.gitconfig:ro
# Sensible Claude behavior
ENV=CLAUDE_BASH_MAINTAIN_PROJECT_WORKING_DIR=true
ENV=DISABLE_TELEMETRY=1
# Mount Extra Volumes for Claude Code References
# VOLUME=/path/to/some-docs:$(pwd)/references/some-docs:ro
# VOLUME=/path/to/some-script.sh:/home/claude/.local/bin/some-script.sh:ro
# Environment variables from host
# Pass through a host env var by name
# ENV=GH_TOKEN
# Or Compose-style shorthand pass-through of same name
# ENV=${GH_TOKEN}