openclaw/sync-config.json
Claude Code 286f6f43a7 docs: add comprehensive cluster configuration
Add complete Moltbot distributed cluster setup:
- 6 documentation files (33KB)
- Deployment tools and scripts
- Configuration templates
- Status dashboard

See CLUSTER-CONFIG-SUMMARY.md for details.
2026-01-29 16:43:13 +08:00

42 lines
864 B
JSON

{
"sync": {
"enabled": true,
"mode": "redis",
"redis": {
"host": "38.14.254.51",
"port": 6379,
"password": "moltbot-redis-2024"
},
"dataTypes": {
"sessions": {
"enabled": true,
"syncInterval": 5000,
"conflictResolution": "last-write-wins"
},
"memory": {
"enabled": true,
"syncInterval": 10000,
"conflictResolution": "merge"
},
"credentials": {
"enabled": false,
"reason": "security"
},
"workspace": {
"enabled": true,
"paths": ["MEMORY.md", "memory/*.md"],
"syncInterval": 30000
}
},
"conflictResolution": {
"strategy": "timestamp",
"fallback": "manual"
},
"offline": {
"enabled": true,
"queueLimit": 100,
"syncOnReconnect": true
}
}
}