35 lines
659 B
TOML
35 lines
659 B
TOML
root_dir = "."
|
|
tmp_dir = "tmp"
|
|
|
|
[build]
|
|
bin = "./tmp/main"
|
|
cmd = "go build -buildvcs=false -o ./tmp/main ."
|
|
delay = 1000
|
|
exclude_dir = ["assets", "tmp", "vendor"]
|
|
exclude_file = []
|
|
exclude_regex = ["_test.go"]
|
|
exclude_unchanged = false
|
|
follow_symlink = false
|
|
full_screen = false
|
|
include_dir = []
|
|
include_ext = ["go", "templ"]
|
|
kill_delay = "0s"
|
|
log = "build-errors.toml"
|
|
send_exit = false
|
|
send_user = false
|
|
stop_on_error = false
|
|
|
|
[log]
|
|
main_only = false
|
|
time = false
|
|
|
|
[misc]
|
|
clean_on_exit = false
|
|
dao = "0x60"
|
|
force_kill = true
|
|
kill = true
|
|
restart = true
|
|
|
|
[screen]
|
|
clear_on_rebuild = false
|
|
extra_resize = false |