bench-forgejo/.bra.toml

20 lines
389 B
TOML
Raw Normal View History

2014-07-26 09:54:27 +05:30
[run]
init_cmds = [
["grep", "-rn", "FIXME", "."],
["./gogs", "web"]
]
2014-07-26 09:54:27 +05:30
watch_all = true
watch_dirs = [
"$WORKDIR/conf/locale",
"$WORKDIR/cmd",
"$WORKDIR/models",
"$WORKDIR/modules",
"$WORKDIR/routers"
]
watch_exts = [".go", ".ini"]
build_delay = 1500
cmds = [
2014-11-13 15:57:01 +05:30
["go", "install", "-tags", "sqlite cert"],# redis memcache
["go", "build", "-tags", "sqlite cert"],
2014-07-26 09:54:27 +05:30
["./gogs", "web"]
]