I would like to have:
conf/
├── config.yaml
├── data
│ └── data.yaml
├── render
│ └── renderer.yaml
├── storage
│ └── local.yaml
└── text
├── font.yaml
└── regions.yaml
Where, in the config.yaml
, the text/font.yaml
assigned to font
and text/regions.yaml
to regions
, something like:
defaults:
- font: text.font
- regions: text.regions
- render: renderer
- data: data
- storage: local
or
defaults:
- font:
- text/font
- regions:
- text/regions
- render: renderer
- data: data
- storage: local
The above do not work!
Would it be possible to achieve the desired result at the yaml
level somehow?