mirage-config/examples/valueSubstitution/config.json
2022-09-29 02:10:45 +03:00

10 lines
278 B
JSON

{
"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!}"
}