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
123456789101112131415161718192021222324252627282930
  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. ] # Directories to watch
  15. watch_exts = [".go", ".ini"] # Extensions to watch
  16. env_files = [] # Load env vars from files
  17. ignore = [".git", "node_modules"] # Directories to exclude from watching
  18. ignore_files = [] # Regexps for ignoring specific notifies
  19. follow_symlinks = false # Enable/disable following symbolic links of sub directories
  20. build_delay = 1500 # Minimal interval to Trigger build event
  21. interrupt_timout = 15 # Time to wait until force kill
  22. graceful_kill = false # Wait for exit and before directly kill
  23. cmds = [ # Commands to run
  24. ["make", "backend"],
  25. ["./gitea"]
  26. ]
  27. [sync]
  28. listen_addr = ":5050"
  29. remote_addr = ":5050"