-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
29 lines (24 loc) · 730 Bytes
/
.env.example
File metadata and controls
29 lines (24 loc) · 730 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
28
29
# Telegram notifications (optional)
TELEGRAM_BOT_TOKEN=your-bot-token-here
TELEGRAM_CHAT_ID=your-chat-id-here
# Git branch naming (optional)
GIT_BRANCH_PREFIX=
# AI provider selection
# Options: claude | codex
SAMOCODE_PROVIDER=claude
# Claude CLI configuration
CLAUDE_PATH=/path/to/claude
CLAUDE_MODEL=opus
CLAUDE_MAX_TURNS=120
CLAUDE_TIMEOUT=600
# Codex CLI configuration
CODEX_PATH=codex
# Leave empty to use default model from ~/.codex/config.toml
CODEX_MODEL=
CODEX_TIMEOUT=600
# Samocode configuration
# NOTE: SESSIONS_DIR and WORKTREES_DIR are NOT set here.
# They MUST be passed by samocode-parent from project's .samocode file
# See: README.md for .samocode file format
SAMOCODE_MAX_RETRIES=3
SAMOCODE_RETRY_DELAY=5