36 lines
1 KiB
Text
36 lines
1 KiB
Text
# .ontoref/config.ncl — ontoref configuration for vapora
|
|
# Place this file at <project_root>/.ontoref/config.ncl
|
|
|
|
{
|
|
nickel_import_paths = [".", ".ontology", "ontology/schemas", "adrs", "reflection/requirements", "reflection/schemas"],
|
|
|
|
log = {
|
|
level = "info",
|
|
path = ".ontoref/logs/actions.jsonl",
|
|
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",
|
|
},
|
|
ui = {
|
|
logo = "vapora.svg",
|
|
},
|
|
|
|
card = import "../card.ncl",
|
|
}
|