.gitignore 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. # See http://help.github.com/ignore-files/ for more about ignoring files.
  2. #
  3. # If you find yourself ignoring temporary files generated by your text editor
  4. # or operating system, you probably want to add a global ignore instead:
  5. # git config --global core.excludesfile ~/.gitignore_global
  6. # Configuration ================================================================
  7. # These files will differ from one user to another;
  8. # committing them may cause Zammad to behave unexpectedly on other machines
  9. # Zammad -----------------------------------------------------------------------
  10. # database (copy from config/database/database.yml, or use `rails bs:init`)
  11. /config/database.yml
  12. # Third-Party ------------------------------------------------------------------
  13. # The config files / dev tools listed below are optional
  14. # and may not be present on most users' machines
  15. # Bundler
  16. /.bundle
  17. /Gemfile.local
  18. # Clutter ======================================================================
  19. # These files are automatically generated;
  20. # in most cases, committing them won't do anything other than bloat the repo
  21. # Zammad -----------------------------------------------------------------------
  22. # database files
  23. /db/*.sqlite3
  24. /db/schema.rb
  25. # translation cache files
  26. /config/locales*.yml
  27. /config/translations/*.yml
  28. # NPM / Yarn
  29. /node_modules
  30. /yarn.lock
  31. # logfiles and tempfiles
  32. /log
  33. /public/assets/*.*
  34. /public/assets/addons
  35. /public/assets/app
  36. /public/assets/custom
  37. /public/assets/chat/node_modules
  38. /tmp/*
  39. !/tmp/pids
  40. /tmp/pids/*
  41. !/tmp/pids/.keep
  42. /storage/fs
  43. # doorkeeper (OAuth 2)
  44. /public/assets/doorkeeper
  45. # images
  46. /public/assets/images/*
  47. !/public/assets/images/icons/
  48. !/public/assets/images/avatar-bg.png
  49. !/public/assets/images/chat-demo-avatar.png
  50. !/public/assets/images/eyedropper.gif
  51. !/public/assets/images/icons.svg
  52. !/public/assets/images/logo.svg
  53. # Third-Party ------------------------------------------------------------------
  54. # macOS
  55. .DS_Store
  56. # vim
  57. .*.sw[pon]
  58. # RubyMine
  59. /.idea
  60. # Eclipse
  61. /.project
  62. # Byebug
  63. /.byebug_history
  64. # SimpleCov
  65. /coverage
  66. # RDoc / YARD
  67. /doc
  68. # Backup files
  69. *~