Add default values for conf

This commit is contained in:
Andras Schmelczer 2022-07-01 22:42:31 +02:00
parent 40aee01119
commit 64b8717a1b
No known key found for this signature in database
GPG key ID: 0EA1BC97D0AB076E
4 changed files with 39 additions and 24 deletions

View file

@ -0,0 +1,2 @@
fourth_key = ENV:SOMETHING

View file

@ -3,3 +3,6 @@ first_key=test
second_key="ENV:alma"
third_key = ENV:alma
fourth_key="this is a default value" # will fall back to this if ENV is not defined
fourth_key = ENV:SOMETHING