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

29 lines
1.1 KiB
Plaintext

# Integrations - Main Module
#
# Runtime abstraction and GitOps integration.
let contracts = import "contracts.ncl" in
let defaults = import "defaults.ncl" in
{
# Re-export runtime contracts (not_exported, for type checking only)
Runtime | not_exported = contracts.Runtime,
RuntimeConfig | not_exported = contracts.RuntimeConfig,
ComposeAdapterConfig | not_exported = contracts.ComposeAdapterConfig,
# Re-export GitOps contracts (not_exported, for type checking only)
GitProvider | not_exported = contracts.GitProvider,
EventType | not_exported = contracts.EventType,
Environment | not_exported = contracts.Environment,
GitOpsRule | not_exported = contracts.GitOpsRule,
WebhookConfig | not_exported = contracts.WebhookConfig,
ScheduledTrigger | not_exported = contracts.ScheduledTrigger,
HealthCheckTrigger | not_exported = contracts.HealthCheckTrigger,
GitOpsConfig | not_exported = contracts.GitOpsConfig,
# Re-export defaults (exportable data)
default_runtime_config = defaults.default_runtime_config,
default_compose_config = defaults.default_compose_config,
default_gitops_config = defaults.default_gitops_config,
}