18 lines
372 B
Plaintext
18 lines
372 B
Plaintext
# Minimal Knowledge Base Configuration
|
|
#
|
|
# Minimal configuration with only essential settings.
|
|
# Useful for quick setup or embedded use cases.
|
|
#
|
|
# Usage:
|
|
# nickel export --format json minimal.ncl > .kogral/config.json
|
|
|
|
let Schema = import "../schemas/kogral-config.ncl" in
|
|
|
|
{
|
|
graph = {
|
|
name = "minimal",
|
|
},
|
|
|
|
# Everything else uses defaults
|
|
} | Schema.KbConfig
|