-
Notifications
You must be signed in to change notification settings - Fork 0
/
.air.toml
65 lines (59 loc) · 1.02 KB
/
.air.toml
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
root = "."
tmp_dir = "tmp"
testdata_dir = "testdata"
[build]
pre_cmd = ["make generate-required"]
cmd = "go build -buildvcs=false -o ./tmp/main ./cmd/tgo"
post_cmd = []
bin = "./tmp/main"
full_bin = ""
args_bin = []
include_ext = [
"go",
"html",
"templ",
"tmpl",
"tpl"
]
exclude_dir = []
include_dir = [
"cmd",
"internal",
"pkg"
]
include_file = []
exclude_file = []
exclude_regex = [
"^.*_test\\.go$",
"^.*\\.mother\\.go$",
"^.*\\.mock\\.go$",
"^.*_templ\\.go$"
]
exclude_unchanged = true
follow_symlink = true
log = "air.log"
poll = false
poll_interval = 1000
delay = 1000
stop_on_error = false
send_interrupt = true
kill_delay = 1000
rerun = false
rerun_delay = 1000
[log]
time = true
main_only = false
[color]
main = "magenta"
watcher = "cyan"
build = "yellow"
runner = "green"
[misc]
clean_on_exit = true
[screen]
clear_on_rebuild = true
keep_scroll = true
[proxy]
enabled = true
proxy_port = 8090
app_port = 8080