pub fn env_var_or_file(name: &str) -> Option<String>Expand description
Read a configuration value from either a direct environment variable NAME
or from a file path specified via NAME_FILE. If both are set, NAME takes precedence.
Returns Some(value) if found, otherwise None.