pub struct ProjectConfig {
pub description: Option<String>,
pub commands: BTreeMap<String, CommandSpec>,
pub cluster: Option<ClusterConfig>,
}Expand description
Root fdl.yaml at project root.
deny_unknown_fields: a mistyped key (e.g. comands:) errors at
load, naming the field and listing the valid ones, instead of
silently configuring nothing. Same rigor as the CLI’s unknown-flag
rejection; applies to every user-facing config struct below.
Fields§
§description: Option<String>§commands: BTreeMap<String, CommandSpec>Commands defined at this level. Each value is a CommandSpec that
encodes the kind of command (inline run script, path pointer to
a child fdl.yml, or inline preset reusing the parent entry).
cluster: Option<ClusterConfig>Multi-host cluster topology. When present, commands marked
cluster: true are dispatched across every worker in
ClusterConfig::workers. Lives at the project root because the
topology is shared across all sub-command fdl.yml files; the
canonical author pattern is to put the cluster block in a
fdl.<env>.yml overlay (e.g. fdl.vm.yml) that deep-merges over
the base fdl.yml.