Ohad31415
Ohad31415
The use case for me was to integrate env configuration so I created some yaml mapping like - ```yaml db: port: ${oc.env:DB_PORT, ???} host: ${oc.env:DB_HOST, ???} ``` I put missing...
@omry I need to use `OmegaConf.resolve` before merging, then each entry either evaluates to a value or to MISSING and then when I do the merge I get this priority...
Sure. I want to be able to read configuration from the following sources by priority from first to last - * defaults * file * env * cmd For defaults,...