14 lines
496 B
Text
14 lines
496 B
Text
|
|
# schemas/config/dag/main.ncl — DAG runtime configuration
|
||
|
|
#
|
||
|
|
# Exposes DAG execution defaults as runtime config following the schemas/config/ pattern.
|
||
|
|
# Consumed by the Nushell loader (lib_provisioning/config/loader/dag.nu) via nickel export.
|
||
|
|
# Workspace-level dag.ncl can override full blocks (execution, resolution, events).
|
||
|
|
|
||
|
|
let dag = import "../../lib/dag/main.ncl" in
|
||
|
|
|
||
|
|
{
|
||
|
|
execution = dag.defaults.composition,
|
||
|
|
resolution = dag.defaults.resolution,
|
||
|
|
events = dag.defaults.events,
|
||
|
|
}
|