Configuration Reference
File Locations
~/.clauderon/├── config.toml # Main configuration├── db.sqlite # Session database├── claude.json # Claude Code settings├── managed-settings.json # Bypass permissions├── worktrees/ # Git worktrees├── uploads/ # Uploaded images├── logs/ # Log files└── codex/ # Codex authMain Configuration (config.toml)
[feature_flags]enable_webauthn_auth = falseenable_ai_metadata = trueenable_auto_reconcile = trueenable_usage_tracking = falseenable_experimental_models = false
[server]bind_addr = "127.0.0.1"# origin = "https://example.com" # For non-localhost WebAuthn# disable_auth = false# org_id = ""Example: Full Production
[feature_flags]enable_webauthn_auth = trueenable_ai_metadata = trueenable_auto_reconcile = trueenable_usage_tracking = trueenable_experimental_models = true
[server]bind_addr = "0.0.0.0"origin = "https://clauderon.example.com"Validation
clauderon config show # current configurationclauderon config paths # file paths