tangled
alpha
login
or
join now
graham.systems
/
space
0
fork
atom
An experimental IndieWeb site built in Go.
0
fork
atom
overview
issues
pulls
pipelines
add Air config
Graham Barber
2 years ago
72a741e5
ed4a335b
+52
2 changed files
expand all
collapse all
unified
split
.gitignore
config
.air.toml
+1
.gitignore
···
3
3
node_modules
4
4
5
5
data/**/*.db
6
6
+
tmp/
6
7
7
8
static/styles.css
+51
config/.air.toml
···
1
1
+
root = "."
2
2
+
testdata_dir = "testdata"
3
3
+
tmp_dir = "tmp"
4
4
+
5
5
+
[build]
6
6
+
args_bin = []
7
7
+
bin = "./tmp/main"
8
8
+
cmd = "go build -o ./tmp/main ."
9
9
+
delay = 1000
10
10
+
exclude_dir = ["assets", "tmp", "vendor", "testdata"]
11
11
+
exclude_file = []
12
12
+
exclude_regex = ["_test.go"]
13
13
+
exclude_unchanged = false
14
14
+
follow_symlink = false
15
15
+
full_bin = ""
16
16
+
include_dir = ["html"]
17
17
+
include_ext = ["go", "tpl", "tmpl", "html"]
18
18
+
include_file = []
19
19
+
kill_delay = "0s"
20
20
+
log = "build-errors.log"
21
21
+
poll = false
22
22
+
poll_interval = 0
23
23
+
post_cmd = []
24
24
+
pre_cmd = []
25
25
+
rerun = false
26
26
+
rerun_delay = 500
27
27
+
send_interrupt = false
28
28
+
stop_on_error = false
29
29
+
30
30
+
[color]
31
31
+
app = ""
32
32
+
build = "yellow"
33
33
+
main = "magenta"
34
34
+
runner = "green"
35
35
+
watcher = "cyan"
36
36
+
37
37
+
[log]
38
38
+
main_only = false
39
39
+
time = false
40
40
+
41
41
+
[misc]
42
42
+
clean_on_exit = false
43
43
+
44
44
+
[proxy]
45
45
+
app_port = 0
46
46
+
enabled = false
47
47
+
proxy_port = 0
48
48
+
49
49
+
[screen]
50
50
+
clear_on_rebuild = false
51
51
+
keep_scroll = true