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

.bra.toml 1.1 kB

5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
1234567891011121314151617181920212223242526272829303132
  1. [run]
  2. init_cmds = [ # Commands run in start
  3. ["make", "backend"],
  4. ["./gitea"]
  5. ]
  6. watch_all = true # Watch all sub-directories
  7. watch_dirs = [
  8. "$WORKDIR/routers",
  9. "$WORKDIR/services",
  10. "$WORKDIR/modules",
  11. "$WORKDIR/models",
  12. "$WORKDIR/cmd",
  13. "$WORKDIR/options",
  14. "$WORKDIR/public",
  15. "$WORKDIR/custom",
  16. ] # Directories to watch
  17. watch_exts = [".go", ".ini", ".less"] # Extensions to watch
  18. env_files = [] # Load env vars from files
  19. ignore = [".git", "node_modules"] # Directories to exclude from watching
  20. ignore_files = [] # Regexps for ignoring specific notifies
  21. follow_symlinks = false # Enable/disable following symbolic links of sub directories
  22. build_delay = 3000 # Minimal interval to Trigger build event
  23. interrupt_timout = 15 # Time to wait until force kill
  24. graceful_kill = false # Wait for exit and before directly kill
  25. cmds = [ # Commands to run
  26. ["make", "backend"],
  27. ["./gitea"]
  28. ]
  29. [sync]
  30. listen_addr = ":5050"
  31. remote_addr = ":5050"