Jesús Pérez 44648e3206
chore: complete nickel migration and consolidate legacy configs
- 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/
2026-01-08 09:55:37 +00:00

16 lines
563 B
Plaintext

# Modes Module - Execution Mode Aggregator
# Imports all mode defaults
let base_defaults = import "./base/defaults.ncl" in
let solo_defaults = import "./solo/defaults.ncl" in
let multiuser_defaults = import "./multiuser/defaults.ncl" in
let cicd_enterprise_defaults = import "./cicd_enterprise/defaults.ncl" in
{
# Default configurations for each mode
solo_mode = solo_defaults.solo_mode,
multiuser_mode = multiuser_defaults.multiuser_mode,
cicd_mode = cicd_enterprise_defaults.cicd_mode,
enterprise_mode = cicd_enterprise_defaults.enterprise_mode,
}