Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | handle partially present optional nestings | stuebinm | 2024-07-10 | 1 | -8/+27 |
| | | | | | | | | these would previously silently fail and simply produce a Nothing if only some (but not all) of the nested keys were present. This is not reasonable behaviour that anyone would expect; whenever a nested key is present, absence of another should be an error (the same goes for any other errors in that key's definition). | ||||
* | fix a couple warnings | stuebinm | 2024-07-04 | 4 | -20/+19 |
| | |||||
* | pretty-printing of config value sources | stuebinm | 2024-06-10 | 3 | -10/+74 |
| | |||||
* | add an env variable source | stuebinm | 2024-06-10 | 2 | -17/+90 |
| | |||||
* | quasi-quotes for config keys | stuebinm | 2024-06-08 | 2 | -3/+22 |
| | |||||
* | nested configs which are optional | stuebinm | 2024-06-07 | 1 | -0/+12 |
| | |||||
* | the Config interface should be Applicative, not Monad | stuebinm | 2024-06-07 | 1 | -45/+78 |
| | | | | | this allows for safer alternative uses for it, such as running it on an empty list of config sources to just get the list of keys it uses. | ||||
* | allow for non-required config options | stuebinm | 2024-06-07 | 1 | -4/+20 |
| | |||||
* | add yaml source | stuebinm | 2024-06-06 | 4 | -3/+49 |
| | |||||
* | nested values, tests, and aeson | stuebinm | 2024-06-06 | 5 | -56/+243 |
| | |||||
* | a generic, multi-source config interface | stuebinm | 2024-05-22 | 3 | -0/+160 |