You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

.bra.toml 499B

123456789101112131415161718192021
  1. [run]
  2. init_cmds = [
  3. #["grep", "-rn", "FIXME", "."],
  4. ["./gogs", "web"]
  5. ]
  6. watch_all = true
  7. watch_dirs = [
  8. "$WORKDIR/conf/locale",
  9. "$WORKDIR/cmd",
  10. "$WORKDIR/models",
  11. "$WORKDIR/modules",
  12. "$WORKDIR/routers"
  13. ]
  14. watch_exts = [".go", ".ini"]
  15. build_delay = 1500
  16. cmds = [
  17. #["go-bindata", "-o=modules/bindata/bindata.go", "-ignore=\\.DS_Store|README", "-pkg=bindata", "conf/..."],
  18. ["go", "install", "-tags", "sqlite cert"],# redis memcache
  19. ["go", "build", "-tags", "sqlite cert"],
  20. ["./gogs", "web"]
  21. ]