website-htmx-rustelo/.ontoref/config.ncl
Jesús Pérez 3ccd15a14b init repo
2026-07-10 03:33:46 +01:00

39 lines
1,019 B
Text

# .ontoref/config.ncl — ontoref configuration for website
{
nickel_import_paths = [
".",
".ontoref",
".ontoref/ontology",
".ontoref/ontology/schemas",
".ontoref/adrs",
".ontoref/reflection/schemas",
".ontoref/reflection/requirements",
],
log = {
level = "info",
path = ".ontoref/logs",
rotation = "daily",
compress = false,
archive = ".ontoref/logs-archive",
max_files = 7,
},
mode_run = {
rules = [
{ when = { mode_id = "validate-ontology" }, allow = true, reason = "validation always allowed" },
{ when = { actor = "agent" }, allow = true, reason = "agent actor always allowed" },
{ when = { actor = "ci" }, allow = true, reason = "ci actor always allowed" },
],
},
nats_events = {
enabled = false,
url = "nats://localhost:4222",
emit = [],
subscribe = [],
handlers_dir = "reflection/handlers",
},
card = import "card.ncl",
}