some tools configure themselves by loading config from a directory, mapping KEYs to filenames and the value to the file contents:
# tree settings.d/DIRECTORY_/
|-- KEY1
`-- KEY2
# cat settings.d/DIRECTORY_/KEY1
value1
# cat settings.d/DIRECTORY_/KEY2
value2
results in:
>>> settings.DIRECTORY_KEY1
value1
>>> settings.DIRECTORY_KEY2
value2
some of the semantics are still debatable, like whether the directory name should even be a part of the key, but these things could be configurable via the connection string.
some tools configure themselves by loading config from a directory, mapping KEYs to filenames and the value to the file contents:
results in:
some of the semantics are still debatable, like whether the directory name should even be a part of the key, but these things could be configurable via the connection string.