Top "Yaml" questions

Use this tag for questions about the YAML data serialization format only, not for questions about programs (or examples) that happen to have their configuration in a YAML format.

How do you do block comments in YAML?

How do I comment a block of lines in YAML?

comments yaml
How do I break a string over multiple lines?

In YAML, I have a string that's very long. I want to keep this within the 80-column (or so) view …

string syntax yaml newline
How can I parse a YAML file in Python

How can I parse a YAML file in Python?

python yaml
How do I install the yaml package for Python?

I have a Python program that uses YAML. I attempted to install it on a new server using pip install …

python python-2.7 yaml pip pyyaml
Using Docker-Compose, how to execute multiple commands

I want to do something like this where I can run multiple commands in order. db: image: postgres web: build: . …

docker yaml docker-compose
What is the difference between YAML and JSON?

What are the differences between YAML and JSON, specifically considering the following things? Performance (encode/decode time) Memory consumption Expression …

json yaml
What's the best practice using a settings file in Python?

I have a command line script that I run with a lot of arguments. I have now come to a …

python parsing configuration yaml settings
Setting active profile and config location from command line in spring boot

I have a spring boot application. I have three profiles in my application-> development, staging and production. So I …

java spring gradle spring-boot yaml
How to escape indicator characters (i.e. : or - ) in YAML

In a config file, I have a key to which I wish to assign a URL. The problem is that …

escaping yaml delimiter
How can I parse a YAML file from a Linux shell script?

I wish to provide a structured configuration file which is as easy as possible for a non-technical user to edit (…

shell yaml