Skip to content

Instantly share code, notes, and snippets.

@hongqn
Created March 4, 2015 06:07
Show Gist options
  • Save hongqn/08654901ac6e2d23ad53 to your computer and use it in GitHub Desktop.
Save hongqn/08654901ac6e2d23ad53 to your computer and use it in GitHub Desktop.
comparison of YAML and TOML
appname = "hello"
[build]
base = "go"
script = [ "go build" ]
[test]
script = [ "go test" ]
[web]
script = [ "./hello" ]
port = 80
[notify]
slack = "#hello"
appname: hello
build:
base: go
script:
- go build
test:
script:
- go test
web:
script:
- ./hello
port: 80
notify:
slack: #hello
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment