25 lines
354 B
TOML
25 lines
354 B
TOML
|
|
# Config pour reloader automatiquement sur les changements
|
||
|
|
|
||
|
|
root = "."
|
||
|
|
tmp_dir = "tmp"
|
||
|
|
|
||
|
|
[build]
|
||
|
|
cmd = "go build -o ./tmp/main ."
|
||
|
|
bin = "tmp/main"
|
||
|
|
full_bin = "tmp/main"
|
||
|
|
include_ext = ["go"]
|
||
|
|
exclude_dir = ["tmp", "vendor"]
|
||
|
|
delay = 1000
|
||
|
|
log = "stdout"
|
||
|
|
|
||
|
|
[log]
|
||
|
|
time = true
|
||
|
|
|
||
|
|
[color]
|
||
|
|
main = "yellow"
|
||
|
|
watcher = "cyan"
|
||
|
|
build = "green"
|
||
|
|
runner = "magenta"
|
||
|
|
|
||
|
|
[debug]
|