32 lines
556 B
TOML
32 lines
556 B
TOML
root = "."
|
|
tmp_dir = "tmp"
|
|
|
|
[build]
|
|
cmd = "go build -o ./tmp/main ."
|
|
bin = "tmp/main"
|
|
full_bin = "./tmp/main web -c config.example.yaml"
|
|
include_ext = ["go", "tpl", "tmpl", "html", "js"]
|
|
exclude_dir = ["tmp", "vendor"]
|
|
include_dir = []
|
|
exclude_file = []
|
|
exclude_regex = ["_test.go"]
|
|
exclude_unchanged = true
|
|
follow_symlink = true
|
|
log = "air.log"
|
|
delay = 1000 # ms
|
|
stop_on_error = true
|
|
send_interrupt = false
|
|
kill_delay = 500 # ms
|
|
|
|
[log]
|
|
time = false
|
|
|
|
[color]
|
|
main = "magenta"
|
|
watcher = "cyan"
|
|
build = "yellow"
|
|
runner = "green"
|
|
|
|
[misc]
|
|
clean_on_exit = true
|