..
Viewing
.air.toml
29 lines (25 loc) • 552.0 B
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29 | root = "."
tmp_dir = "tmp"
[build]
pre_cmd = ["make templ"]
cmd = "go build -o ./tmp/main ./cmd/majin"
bin = "tmp/main"
full_bin = "APP_ENV=development ./tmp/main"
include_ext = ["go", "tpl", "tmpl", "templ", "html"]
exclude_dir = ["assets", "tmp", "vendor", "static", "node_modules"]
exclude_regex = [".*_templ.go"]
include_dir = []
exclude_file = []
delay = 1000
stop_on_error = true
log = "air.log"
send_interrupt = false
[log]
time = false
[color]
main = "magenta"
watcher = "cyan"
build = "yellow"
runner = "green"
[misc]
clean_on_exit = true
|
|