mirror of
https://github.com/waku-org/nwaku.git
synced 2025-02-11 22:47:31 +00:00
41 lines
734 B
TOML
41 lines
734 B
TOML
|
# This is a TOML document.
|
||
|
|
||
|
title = "TOML Example"
|
||
|
|
||
|
[owner]
|
||
|
name = "Tom Preston-Werner"
|
||
|
dob = 1979-05-27T07:32:00-08:00 # First class dates
|
||
|
cap = -123.123
|
||
|
dobString = 1979-05-27T07:32:00-08:00 # First class dates
|
||
|
dobToml = 1979-05-27T07:32:00-08:00 # First class dates
|
||
|
|
||
|
[database]
|
||
|
server = "192.168.1.1"
|
||
|
ports = [ 8001, 8002, 8003 ]
|
||
|
connection_max = 5000
|
||
|
enabled = true
|
||
|
negative = -3
|
||
|
|
||
|
# Line breaks are OK when inside arrays
|
||
|
hosts = [
|
||
|
"alpha",
|
||
|
"omega"
|
||
|
]
|
||
|
|
||
|
configcap = 1
|
||
|
cc = "TomlCap"
|
||
|
fruit = "banana"
|
||
|
|
||
|
[servers]
|
||
|
|
||
|
# Indentation (tabs and/or spaces) is allowed but not required
|
||
|
[servers.alpha]
|
||
|
ip = "10.0.0.1"
|
||
|
dc = "eqdc10"
|
||
|
|
||
|
[servers.beta]
|
||
|
ip = "10.0.0.2"
|
||
|
dc = "eqdc10"
|
||
|
|
||
|
[clients]
|
||
|
data = [ ["gamma", "delta"], [1, 2] ]
|