.gitignore 765 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. # Binaries for programs and plugins
  2. *.exe
  3. *.exe~
  4. *.dll
  5. *.so
  6. *.dylib
  7. # Test binary, build with `go test -c`
  8. *.test
  9. # Output of the go coverage tool, specifically when used with LiteIDE
  10. *.out
  11. # Binary files
  12. /fave
  13. /bin/*
  14. # Virtual hosts logs
  15. /hosts/*/logs/*
  16. !/hosts/*/logs/.*
  17. # Virtual hosts temp dir
  18. /hosts/*/tmp/*
  19. !/hosts/*/tmp/.*
  20. # Test virtual host dir
  21. /hosts/*
  22. !/hosts/localhost
  23. /hosts/*/htdocs/products
  24. /hosts/*/htdocs/products.xml
  25. /hosts/*/htdocs/public/*
  26. !/hosts/*/htdocs/public/.*
  27. # Default host mysql config file
  28. /hosts/localhost/config/mysql.json
  29. # All else
  30. /hosts/localhost/config/config.json
  31. # Domains binding
  32. /hosts/localhost/config/.domains
  33. # Skip cypress libs folder
  34. /support/cypress/screenshots
  35. /support/cypress/videos
  36. /support/node_modules