17 lines
561 B
Text
17 lines
561 B
Text
|
|
# Pipeline subsystem configuration
|
||
|
|
#
|
||
|
|
# Controls where the server finds the pipeline definitions and scripts.
|
||
|
|
# Pipeline *definitions* (triggers + steps) live in rustelo/pipelines/.
|
||
|
|
#
|
||
|
|
# Required env vars:
|
||
|
|
# PIPELINES_NCL_PATH — path to rustelo/pipelines/index.ncl
|
||
|
|
# PIPELINE_SCRIPTS_ROOT — root for relative script paths; absolute paths bypass this
|
||
|
|
# NATS_NAMESPACE — subject namespace prefix (e.g. evol.website.dev)
|
||
|
|
|
||
|
|
{
|
||
|
|
pipelines = {
|
||
|
|
ncl_path = "${PIPELINES_NCL_PATH}",
|
||
|
|
scripts_root = "${PIPELINE_SCRIPTS_ROOT}",
|
||
|
|
},
|
||
|
|
}
|