-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevbridge.config.example.json
More file actions
54 lines (54 loc) · 1.38 KB
/
devbridge.config.example.json
File metadata and controls
54 lines (54 loc) · 1.38 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
47
48
49
50
51
52
53
54
{
"telegram": {
"bot_token": "YOUR_BOT_TOKEN_HERE",
"allowed_users": ["YOUR_CHAT_ID_HERE"]
},
"projects": {
"my-app": {
"path": "/absolute/path/to/your/project",
"adapter": "claude",
"model": "sonnet",
"description": "Read-only (default) - can only read code"
},
"my-app-dev": {
"path": "/absolute/path/to/your/project",
"adapter": "claude",
"model": "sonnet",
"description": "Read + Write - can create and edit files",
"permission_level": "read-write"
},
"my-app-full": {
"path": "/absolute/path/to/your/project",
"adapter": "claude",
"model": "opus",
"description": "Full access - agents, commands, spec-driven dev",
"permission_level": "full"
},
"api-backend": {
"path": "/absolute/path/to/api",
"adapter": "gemini",
"description": "Backend API",
"permission_level": "full"
}
},
"commands": {
"test": "yarn test",
"lint": "yarn lint",
"build": "yarn build",
"status": "git status --short",
"log": "git log --oneline -10"
},
"plugins": {
"@devbridge/plugin-git": true,
"@devbridge/plugin-github": true
},
"defaults": {
"adapter": "claude",
"timeout": 120,
"stream_timeout": 3600,
"inactivity_timeout": 300,
"max_message_length": 4096,
"session_ttl_hours": 24,
"command_timeout": 60
}
}