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

19 lines
793 B
Plaintext

# Redis Database Template (REAL from wuji)
# Extracted from wuji production: /workspace/infra/wuji/taskservs/redis.k
import taskservs.databases.redis.kcl.redis as redis
# Real wuji Redis configuration
_redis_taskserv = redis.Redis {
version = "7.2.3" # REAL: exact version from wuji
port = 6379 # REAL: standard port
maxmemory = "512mb" # REAL: memory limit from wuji
maxmemory_policy = "allkeys-lru" # REAL: eviction policy
persistence = True # REAL: persistence enabled
bind_address = "0.0.0.0" # REAL: bind to all interfaces
loglevel = "notice" # REAL: log level
tcp_keepalive = 300 # REAL: keepalive setting
}
_redis_taskserv