22 lines
487 B
TOML
22 lines
487 B
TOML
[build]
|
|
# Tell Air to use your Makefile build target directly!
|
|
cmd = "make build BUILD_DIR=/tmp"
|
|
|
|
# Tell Air where your compiled binary ends up
|
|
bin = "/tmp/blt"
|
|
|
|
# Watch these extensions and ignore these paths
|
|
include_ext = ["go", "tpl", "tmpl", "html"]
|
|
exclude_dir = ["assets", "tmp", "bin", "node_modules", "public"]
|
|
|
|
# Delay before rebuilding after a file save (ms)
|
|
delay = 500
|
|
|
|
[log]
|
|
time = false
|
|
|
|
[color]
|
|
main = "magenta"
|
|
build = "yellow"
|
|
runner = "green"
|