YAML stands for ‘YAML Ain’t Markup Language’ and is a data serialization language, widely used to written configuration files.
The configuration files can have two different possible extensions: .yml
or .yaml
Example File
Other Features
- Is possible to use
$VARIABLE_NAME
for accessing environment variables
- YAML has placeholder features
- The
---
can be used for separate YAML configurations in the same file
Handling With Code