.fswatch.json 327 B

12345678910111213141516171819202122
  1. {
  2. "paths": [
  3. "."
  4. ],
  5. "depth": 2,
  6. "exclude": [
  7. "^gogs$",
  8. "~$",
  9. "\\.swp$",
  10. "\\.exe$",
  11. "\\.swx$",
  12. ".*\\.log$"
  13. ],
  14. "include": [],
  15. "command": [
  16. "bash", "-c", "go build && ./gogs web"
  17. ],
  18. "env": {
  19. "PROGRAM": "fswatch"
  20. },
  21. "enable-restart": false
  22. }