provisioning/config/examples/extension-registry.solo.example.toml
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

26 lines
633 B
TOML

# Extension Registry Configuration - Solo/Minimal Example
# Minimal configuration for development or single-backend deployments
# Old single-instance format (auto-migrated to multi-instance on startup)
[server]
host = "127.0.0.1"
port = 8082
workers = 2
enable_cors = false
enable_compression = true
# Single Gitea backend (auto-migrated to sources.gitea[0])
[gitea]
url = "http://localhost:3000"
organization = "provisioning"
token_path = "/etc/secrets/gitea-token.txt"
timeout_seconds = 30
verify_ssl = false
# Caching configuration
[cache]
capacity = 100
ttl_seconds = 300
enable_metadata_cache = true
enable_list_cache = true