16 lines
348 B
TOML
16 lines
348 B
TOML
root = "."
|
|
tmp_dir = "tmp"
|
|
|
|
[build]
|
|
bin = "./tmp/main"
|
|
cmd = "templ generate && go build -o ./tmp/main ."
|
|
exclude_dir = ["static", "migrations", "node_modules", "tmp"]
|
|
exclude_regex = ["_test.go", "_templ.go"]
|
|
include_ext = ["go", "templ"]
|
|
send_interrupt = true
|
|
kill_delay = "5s"
|
|
stop_on_error = true
|
|
|
|
[misc]
|
|
clean_on_exit = true
|