runmat-config 0.5.2

Shared configuration schema and loaders for RunMat
Documentation
1
2
3
4
5
6
7
8
9
10
11
use anyhow::Result;

use crate::runtime::RunMatRuntimeConfig;

/// Runtime config environment overrides are intentionally disabled in the
/// hard-cutover model. Configuration should come from runmat.toml/runmat.json
/// (or RUNMAT_CONFIG pointing to one of those files), with CLI flags as the
/// highest precedence runtime layer.
pub(crate) fn apply_environment_variables(_config: &mut RunMatRuntimeConfig) -> Result<()> {
    Ok(())
}