gitea/.bra.toml

20 lines
466 B
TOML
Raw Normal View History

2014-07-26 06:24:27 +02:00
[run]
init_cmds = [
#["grep", "-rn", "FIXME", "."],
["./gogs", "web"]
]
2014-07-26 06:24:27 +02:00
watch_all = true
watch_dirs = [
"$WORKDIR/cmd",
"$WORKDIR/models",
"$WORKDIR/modules",
"$WORKDIR/routers"
]
watch_exts = [".go"]
2014-07-26 06:24:27 +02:00
build_delay = 1500
cmds = [
2015-03-18 11:37:44 +01:00
#["go-bindata", "-o=modules/bindata/bindata.go", "-ignore=\\.DS_Store|README", "-pkg=bindata", "conf/..."],
2014-11-13 11:27:01 +01:00
["go", "install", "-tags", "sqlite cert"],# redis memcache
["go", "build", "-tags", "sqlite cert"],
2014-07-26 06:24:27 +02:00
["./gogs", "web"]
]