.air.toml 1000 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. root = "."
  2. testdata_dir = "testdata"
  3. tmp_dir = "tmp"
  4. [build]
  5. args_bin = []
  6. bin = "./tmp/main"
  7. cmd = "go build -o ./tmp/main ."
  8. delay = 1000
  9. exclude_dir = ["logs", "tmp", "vendor", "testdata"]
  10. exclude_file = []
  11. exclude_regex = ["_test.go"]
  12. exclude_unchanged = true
  13. follow_symlink = false
  14. full_bin = ""
  15. include_dir = [
  16. "desc",
  17. "etc",
  18. "internal",
  19. "../../../../model",
  20. "../../../../pkg",
  21. ]
  22. include_ext = ["go", "yaml", "toml", "html"]
  23. include_file = []
  24. kill_delay = "0s"
  25. log = "build-errors.log"
  26. poll = false
  27. poll_interval = 0
  28. post_cmd = []
  29. pre_cmd = []
  30. rerun = false
  31. rerun_delay = 500
  32. send_interrupt = false
  33. stop_on_error = false
  34. [color]
  35. app = ""
  36. build = "yellow"
  37. main = "magenta"
  38. runner = "green"
  39. watcher = "cyan"
  40. [log]
  41. main_only = false
  42. silent = false
  43. time = false
  44. [misc]
  45. clean_on_exit = false
  46. [proxy]
  47. app_port = 0
  48. enabled = false
  49. proxy_port = 0
  50. [screen]
  51. clear_on_rebuild = false
  52. keep_scroll = true