24 lines
769 B
Plaintext
24 lines
769 B
Plaintext
|
|
let s = import "../../{{ ontoref_rel }}/reflection/schemas/config.ncl" in
|
||
|
|
|
||
|
|
# Production profile for {{ project_name }}.
|
||
|
|
# All values must be set explicitly — no defaults carry over from development.
|
||
|
|
# Sealed via: ontoref config apply production
|
||
|
|
{
|
||
|
|
profile = 'Production,
|
||
|
|
|
||
|
|
values = {
|
||
|
|
nickel_import_paths = [".", ".ontoref/adrs", ".ontoref/ontology/schemas", ".ontology", "adrs", "reflection"],
|
||
|
|
nats_url = "{{ nats_url }}",
|
||
|
|
surrealdb_url = "{{ surrealdb_url }}",
|
||
|
|
default_actor = "ci",
|
||
|
|
register = {
|
||
|
|
changelog = false,
|
||
|
|
adr_check = true,
|
||
|
|
ontology_sync = false,
|
||
|
|
modes_check = true,
|
||
|
|
block_on_invariant_breach = true,
|
||
|
|
},
|
||
|
|
generators = [],
|
||
|
|
},
|
||
|
|
}
|