AdobeDocs / app-builder

Documentation for Adobe App Builder
https://developer.adobe.com/app-builder/docs/overview/
Apache License 2.0
34 stars 59 forks source link

Document dollar notation (env var) values in app.config.yaml #327

Open shazron opened 6 months ago

shazron commented 6 months ago

See https://github.com/apache/openwhisk-wskdeploy/blob/master/specification/html/spec_parameters.md#dollar-notation--schema-for-values

There is no reference to this in our docs.

aiojbot commented 6 months ago

JIRA issue created: https://jira.corp.adobe.com/browse/AIOE-670

purplecabbage commented 4 months ago

This should be done along with the refactor to do interpolation in 1 place only. The dev command provides a robust implementation and supports

$DEFAULT_USERNAME
${DEFAULT_USERNAME}
{DEFAULT_USERNAME}

and will ignore literals

'$DEFAULT_USERNAME'
"$DEFAULT_USERNAME" 
...