.air.toml 733 B

1234567891011121314151617181920212223242526272829303132333435363738
  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 ./cmd/server"
  8. delay = 1000
  9. exclude_dir = ["assets", "tmp", "vendor", "testdata", "simulations"]
  10. exclude_file = []
  11. exclude_regex = ["_test.go"]
  12. exclude_unchanged = false
  13. follow_symlink = false
  14. full_bin = ""
  15. include_dir = []
  16. include_ext = ["go", "tpl", "tmpl", "html", "yaml", "yml"]
  17. kill_delay = "0s"
  18. log = "build-errors.log"
  19. send_interrupt = false
  20. stop_on_root = false
  21. [color]
  22. app = ""
  23. build = "yellow"
  24. main = "magenta"
  25. runner = "green"
  26. watcher = "cyan"
  27. [log]
  28. time = false
  29. [misc]
  30. clean_on_exit = false
  31. [screen]
  32. clear_on_rebuild = false
  33. keep_scroll = true