- Remove KCL ecosystem (~220 files deleted) - Migrate all infrastructure to Nickel schema system - Consolidate documentation: legacy docs → provisioning/docs/src/ - Add CI/CD workflows (.github/) and Rust build config (.cargo/) - Update core system for Nickel schema parsing - Update README.md and CHANGES.md for v5.0.0 release - Fix pre-commit hooks: end-of-file, trailing-whitespace - Breaking changes: KCL workspaces require migration - Migration bridge available in docs/src/development/
50 lines
935 B
Plaintext
50 lines
935 B
Plaintext
# Solo Development Mode Overlay
|
|
# Tuning for single-user, local development (2 CPU, 4GB RAM)
|
|
|
|
{
|
|
orchestrator = {
|
|
server.workers = 2,
|
|
server.max_connections = 50,
|
|
queue.max_concurrent_tasks = 2,
|
|
batch.parallel_limit = 2,
|
|
extensions.max_concurrent = 2,
|
|
performance.max_memory = 1000,
|
|
performance.connection_pool_size = 10,
|
|
},
|
|
|
|
control_center = {
|
|
server.workers = 2,
|
|
server.max_connections = 50,
|
|
},
|
|
|
|
vault_service = {
|
|
server.workers = 2,
|
|
server.max_connections = 50,
|
|
},
|
|
|
|
mcp_server = {
|
|
server.workers = 2,
|
|
server.max_connections = 50,
|
|
},
|
|
|
|
extension_registry = {
|
|
server.workers = 2,
|
|
server.max_connections = 50,
|
|
},
|
|
|
|
rag = {
|
|
server.workers = 2,
|
|
server.max_connections = 50,
|
|
},
|
|
|
|
ai_service = {
|
|
server.workers = 2,
|
|
server.max_connections = 50,
|
|
},
|
|
|
|
provisioning_daemon = {
|
|
server.workers = 2,
|
|
server.max_connections = 50,
|
|
},
|
|
}
|