Created
December 5, 2013 10:48
-
-
Save vitaLee/7803420 to your computer and use it in GitHub Desktop.
Reusing common config blocks in YAML
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
defaults: &defaults | |
foo: 1 | |
bar: 2 | |
baz: 3 | |
production: | |
<<: *defaults | |
bar: overriden | |
quz: 4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment