File: spec-readme-example.yaml

package info (click to toggle)
golang-github-komkom-toml 0.0~git20211215.3c8ee9d-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 3,072 kB
  • sloc: makefile: 2
file content (28 lines) | stat: -rw-r--r-- 432 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# This is a TOML document.

title: "TOML Example"

owner:
  name: "Tom Preston-Werner"
  dob: 1979-05-27T07:32:00-08:00 # First class dates

database:
  server: "192.168.1.1"
  ports: [ 8001, 8001, 8002 ]
  connection_max: 5000
  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] ]
  hosts: [
    "alpha",
    "omega"
  ]