9 lines
233 B
TOML
9 lines
233 B
TOML
root = "."
|
|
tmp_dir = "tmp"
|
|
[build]
|
|
cmd = "go build -o ./tmp/main ."
|
|
bin = "./tmp/main"
|
|
delay = 1000 # ms
|
|
exclude_dir = ["assets", "tmp", "vendor"]
|
|
include_ext = ["go", "tpl", "tmpl", "html"]
|
|
exclude_regex = ["_test\\.go"] |