-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example
More file actions
46 lines (38 loc) · 1.91 KB
/
Copy pathconfig.example
File metadata and controls
46 lines (38 loc) · 1.91 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# clauded configuration
# Copy to ~/.clauded/config and edit.
# Created automatically on first run if it doesn't exist.
# Project directory — mounted read-write into containers
DEV_DIR="$HOME/dev"
# Extra directories to mount read-write (space-separated, absolute paths)
# Example: EXTRA_MOUNTS="$HOME/.my-tool $HOME/.local/share/my-mcp"
EXTRA_MOUNTS=""
# Custom SSH config for Docker (leave empty to use ~/.ssh/config as-is)
# Useful if your Mac SSH config has Keychain or Mac-specific entries.
# Copy ssh-config-docker.example to ssh-config-docker and edit.
# SSH_CONFIG="$SCRIPT_DIR/ssh-config-docker"
SSH_CONFIG=""
# Custom gitconfig for Docker (leave empty to use ~/.gitconfig as-is)
# Useful if your Mac gitconfig uses osxkeychain credential helpers.
# Copy gitconfig-docker.example to gitconfig-docker and edit.
# GITCONFIG="$SCRIPT_DIR/gitconfig-docker"
GITCONFIG=""
# Skip auto-update check on startup (same as --no-update flag)
# SKIP_UPDATE="true"
# Pin to a specific Claude Code version (same as --version flag)
# Rebuilds the image if the current version doesn't match.
# CLAUDE_PIN_VERSION="2.1.150"
# IPv4 pinning for Anthropic endpoints (host networking only).
# Some VPNs advertise IPv6 but can't route it, which breaks the connection.
# auto (default) — pin only when IPv6 is unreachable
# true — always pin to IPv4
# false — never pin
# FORCE_IPV4="auto"
# Voice mode: bridge your Mac's microphone into the container so Claude Code's
# voice input works. On by default; needs sox on the Mac (brew install sox).
# The first recording of each session asks for approval via a macOS dialog
# (denied by default), macOS shows its mic indicator while recording, and every
# capture is logged to ~/.clauded/mic.log.
# VOICE="false" — disable the mic bridge entirely
# MIC_CONSENT="always" — ask before every recording (default: once per session)
# VOICE="true"
# MIC_CONSENT="session"