mirage-config/examples/valueSubstitution/config.json

10 lines
278 B
JSON
Raw Permalink Normal View History

2022-09-28 23:13:20 +02:00
{
"parameters": {
"greeting": "Hello",
"subject": "$CONFIG_EXAMPLE_SUBJECT",
"followUp": "${CONFIG_EXAMPLE_FOLLOW_UP:Enjoy your day!}"
},
"start": "${parameters.greeting} ${parameters.subject}! ${parameters.followUp}",
"end": "${parameters.farewell:Bye!}"
2022-09-28 23:13:20 +02:00
}