25 lines
415 B
TOML
25 lines
415 B
TOML
root = "."
|
|
tmp_dir = "tmp"
|
|
|
|
[build]
|
|
cmd = "go build -o ./admin-dev.exe ."
|
|
bin = "admin-dev.exe"
|
|
include_ext = ["go", "html", "css", "js"]
|
|
exclude_dir = ["data", "tmp", "testdata"]
|
|
exclude_regex = ["_test\\.go"]
|
|
exclude_unchanged = true
|
|
delay = 500
|
|
stop_on_error = true
|
|
send_interrupt = false
|
|
kill_delay = "500ms"
|
|
|
|
[log]
|
|
time = true
|
|
|
|
[misc]
|
|
clean_on_exit = true
|
|
|
|
[screen]
|
|
clear_on_rebuild = false
|
|
keep_scroll = true
|