Closed ricoberger closed 10 months ago
It is now possible to use environment variables in the configuration file (config.yaml). Environment variables can be used via ${ENV_VAR} or $ENV_VAR.
config.yaml
${ENV_VAR}
$ENV_VAR
If a user wants to use the $ sign without the environment variable replacement the $ sign must be escaped via $$.
$
$$
Closes #109
It is now possible to use environment variables in the configuration file (
config.yaml
). Environment variables can be used via${ENV_VAR}
or$ENV_VAR
.If a user wants to use the
$
sign without the environment variable replacement the$
sign must be escaped via$$
.Closes #109