A step-by-step developer guide. Each command has a live terminal workspace sandbox. Click pause on any screen to type, query, or edit the files yourself.
To read values from a YAML file, specify their paths using dot notation. Nested attributes map directly to their parent key scopes.
app:
name: "Deploy Service"
version: "2.1.0"
settings:
port: 8080
You can append elements to arrays using the += operator. Add the -i flag to commit these changes directly to the file itself.
app:
settings:
tags:
- production
- web
To integrate YAML configurations into tools that require JSON payloads, use the -o=json flag to format the parsed document as JSON.
app: name: "Deploy Service" version: "2.1.0"