22 lines
376 B
TOML
22 lines
376 B
TOML
root = "."
|
|
tmp_dir = "tmp"
|
|
|
|
[build]
|
|
bin = "./tmp/storage"
|
|
cmd = "go build -o ./tmp/storage ./cmd/storage/main.go"
|
|
delay = 1000
|
|
exclude_dir = ["assets", "tmp", "vendor", "web"]
|
|
include_ext = ["go", "tpl", "tmpl", "html"]
|
|
exclude_regex = ["_test.go"]
|
|
|
|
[log]
|
|
time = true
|
|
|
|
[color]
|
|
main = "blue"
|
|
build = "yellow"
|
|
runner = "green"
|
|
|
|
[misc]
|
|
clean_on_exit = true
|