-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.reploidrc.json.example
More file actions
51 lines (51 loc) · 1.2 KB
/
.reploidrc.json.example
File metadata and controls
51 lines (51 loc) · 1.2 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
{
"version": "1.0",
"api": {
"provider": "gemini",
"geminiKey": "${GEMINI_API_KEY}",
"openaiKey": "${OPENAI_API_KEY}",
"anthropicKey": "${ANTHROPIC_API_KEY}",
"localEndpoint": "http://localhost:11434",
"timeout": 120000,
"maxRetries": 3
},
"server": {
"port": 8000,
"host": "localhost",
"corsOrigins": ["http://localhost:8080"],
"sessionTimeout": 3600000,
"maxSessions": 100
},
"cli": {
"maxFileSize": 102400,
"verbose": false,
"defaultOutput": "./output",
"excludeDirs": ["node_modules", ".git", "dist", "build", ".cache"]
},
"guardian": {
"requireApproval": true,
"autoBackup": true,
"verificationTimeout": 30000,
"maxCycles": 100,
"pauseOnError": true
},
"workspace": {
"root": "./sessions",
"maxSessions": 10,
"gitEnabled": true,
"autoCommit": true,
"checkpointInterval": 300000
},
"vfs": {
"root": "/vfs",
"maxFileSize": 10485760,
"allowedExtensions": ["js", "json", "md", "txt", "css", "html", "yml", "yaml"],
"gitIntegration": true
},
"ui": {
"theme": "cyberpunk",
"showAdvancedLogs": false,
"statusUpdateInterval": 1000,
"confirmDestructive": true
}
}