Add default values for conf

This commit is contained in:
Andras Schmelczer 2022-07-01 22:42:31 +02:00
parent 076f676f4f
commit cbe843220a
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