23 lines
453 B
TOML
23 lines
453 B
TOML
root = "."
|
|
tmp_dir = "tmp"
|
|
|
|
[build]
|
|
bin = "./tmp/gateway"
|
|
cmd = "go build -o ./tmp/gateway ./cmd/gateway/main.go"
|
|
full_bin = "DEV_MODE=true NATS_URL=nats://localhost:4222 ./tmp/gateway"
|
|
delay = 1000
|
|
exclude_dir = ["assets", "tmp", "vendor", "web"]
|
|
include_ext = ["go", "tpl", "tmpl", "html"]
|
|
exclude_regex = ["_test.go"]
|
|
|
|
[log]
|
|
time = true
|
|
|
|
[color]
|
|
main = "magenta"
|
|
build = "yellow"
|
|
runner = "green"
|
|
|
|
[misc]
|
|
clean_on_exit = true
|