+1
.gitignore
+1
.gitignore
+51
config/.air.toml
+51
config/.air.toml
···
···
1
+
root = "."
2
+
testdata_dir = "testdata"
3
+
tmp_dir = "tmp"
4
+
5
+
[build]
6
+
args_bin = []
7
+
bin = "./tmp/main"
8
+
cmd = "go build -o ./tmp/main ."
9
+
delay = 1000
10
+
exclude_dir = ["assets", "tmp", "vendor", "testdata"]
11
+
exclude_file = []
12
+
exclude_regex = ["_test.go"]
13
+
exclude_unchanged = false
14
+
follow_symlink = false
15
+
full_bin = ""
16
+
include_dir = ["html"]
17
+
include_ext = ["go", "tpl", "tmpl", "html"]
18
+
include_file = []
19
+
kill_delay = "0s"
20
+
log = "build-errors.log"
21
+
poll = false
22
+
poll_interval = 0
23
+
post_cmd = []
24
+
pre_cmd = []
25
+
rerun = false
26
+
rerun_delay = 500
27
+
send_interrupt = false
28
+
stop_on_error = false
29
+
30
+
[color]
31
+
app = ""
32
+
build = "yellow"
33
+
main = "magenta"
34
+
runner = "green"
35
+
watcher = "cyan"
36
+
37
+
[log]
38
+
main_only = false
39
+
time = false
40
+
41
+
[misc]
42
+
clean_on_exit = false
43
+
44
+
[proxy]
45
+
app_port = 0
46
+
enabled = false
47
+
proxy_port = 0
48
+
49
+
[screen]
50
+
clear_on_rebuild = false
51
+
keep_scroll = true