summaryrefslogtreecommitdiffstats
path: root/.bra.toml
blob: 5fac22f58410a8d83b8482bcf4b4db5f10c7a899 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[run]
init_cmds = [
	["grep", "-rn", "FIXME", "."],
	["./gogs", "web"]
]
watch_all = true
watch_dirs = [
	"$WORKDIR/conf/locale",
	"$WORKDIR/cmd",
	"$WORKDIR/models",
	"$WORKDIR/modules",
	"$WORKDIR/routers"
]
watch_exts = [".go", ".ini"]
build_delay = 1500
cmds = [
	["go", "install", "-tags", "sqlite redis cert"],
	["go", "build", "-tags", "sqlite redis cert"],
	["./gogs", "web"]
]