Created
March 24, 2017 23:08
-
-
Save akaak/f15e0d88c32ae8c700fd38f53c31499f to your computer and use it in GitHub Desktop.
toml-json
This file contains hidden or 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
{ | |
"title": "TOML Example", | |
"owner": { | |
"name": "Tom Preston-Werner", | |
"organization": "GitHub", | |
"bio": "GitHub Cofounder & CEO\n\tLikes \"tater tots\" and beer and backslashes: \\", | |
"dob": "1979-05-27T07:32:00.000Z" | |
}, | |
"database": { | |
"server": "192.168.1.1", | |
"ports": [ | |
8001, | |
8001, | |
8003 | |
], | |
"connection_max": 5000, | |
"connection_min": -2, | |
"max_temp": 87.1, | |
"min_temp": -17.76, | |
"enabled": true | |
}, | |
"servers": { | |
"alpha": { | |
"ip": "10.0.0.1", | |
"dc": "eqdc10" | |
}, | |
"beta": { | |
"ip": "10.0.0.2", | |
"dc": "eqdc10" | |
} | |
}, | |
"clients": { | |
"data": [ | |
[ | |
"gamma", | |
"delta" | |
], | |
[ | |
1, | |
2 | |
] | |
] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment