-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.json
More file actions
45 lines (45 loc) · 1.1 KB
/
config.example.json
File metadata and controls
45 lines (45 loc) · 1.1 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
{
"telegram": {
"bot_token": "123456789:REPLACE_WITH_YOUR_BOT_TOKEN",
"allowed_chat_ids": [123456789],
"poll_interval_seconds": 2,
"request_timeout_seconds": 30
},
"runner": {
"provider": "codex",
"binary": "codex",
"timeout_seconds": 0
},
"codex_sessions": {
"enabled": false,
"state_db_path": "~/.codex/state_5.sqlite",
"poll_interval_seconds": 2.0,
"include_user_messages": false,
"desktop_active_mode": "always",
"desktop_idle_threshold_seconds": 120
},
"security": {
"allow_unlisted_chats": false,
"require_existing_repos": true,
"require_git_repos": false
},
"runtime": {
"state_path": "./state.json",
"log_path": "./codex-connector.log",
"max_output_chars": 1200
},
"projects": [
{
"name": "privsyn",
"repo_path": "/Users/you/Documents/GitHub/privsyn",
"branch": "main",
"notes": "Primary privacy project"
},
{
"name": "course",
"repo_path": "/Users/you/Documents/GitHub/data-privacy-course",
"branch": "main",
"notes": "Course materials and examples"
}
]
}