allsections-pretty.json 612 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "all":{
  3. "hostname":"all",
  4. "name":"thisname",
  5. "db":{
  6. "host":"127.0.0.1",
  7. "user":"username",
  8. "pass":"password",
  9. "name":"live"
  10. },
  11. "one":{
  12. "two":{
  13. "three":"multi"
  14. }
  15. }
  16. },
  17. "staging":{
  18. "_extends":"all",
  19. "hostname":"staging",
  20. "db":{
  21. "name":"dbstaging"
  22. },
  23. "debug":false
  24. },
  25. "debug":{
  26. "_extends":"all",
  27. "hostname":"debug",
  28. "db":{
  29. "name":"dbdebug"
  30. },
  31. "debug":true,
  32. "values":{
  33. "changed":true
  34. },
  35. "special":{
  36. "no":"no",
  37. "null":null,
  38. "false":false
  39. }
  40. },
  41. "other_staging":{
  42. "only_in":"otherStaging",
  43. "db":{
  44. "pass":"anotherpwd"
  45. }
  46. }
  47. }