| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- {
- "all":{
- "hostname":"all",
- "name":"thisname",
- "db":{
- "host":"127.0.0.1",
- "user":"username",
- "pass":"password",
- "name":"live"
- },
- "one":{
- "two":{
- "three":"multi"
- }
- }
- },
- "staging":{
- "_extends":"all",
- "hostname":"staging",
- "db":{
- "name":"dbstaging"
- },
- "debug":false
- },
- "debug":{
- "_extends":"all",
- "hostname":"debug",
- "db":{
- "name":"dbdebug"
- },
- "debug":true,
- "values":{
- "changed":true
- },
- "special":{
- "no":"no",
- "null":null,
- "false":false
- }
- },
- "other_staging":{
- "only_in":"otherStaging",
- "db":{
- "pass":"anotherpwd"
- }
- }
- }
|