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