.gitignore 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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. # local backup config file
  13. /contrib/backup/config
  14. # Third-Party ------------------------------------------------------------------
  15. # The config files / dev tools listed below are optional
  16. # and may not be present on most users' machines
  17. # Bundler
  18. /.bundle
  19. /Gemfile.local
  20. # Clutter ======================================================================
  21. # These files are automatically generated;
  22. # in most cases, committing them won't do anything other than bloat the repo
  23. # Zammad -----------------------------------------------------------------------
  24. # database files
  25. /db/*.sqlite3
  26. /db/schema.rb
  27. # translation cache files
  28. /config/locales*.yml
  29. /config/translations/*.yml
  30. # NPM / Yarn
  31. /node_modules
  32. /yarn.lock
  33. # logfiles and tempfiles
  34. /log
  35. /public/assets/*.*
  36. /public/assets/addons
  37. /public/assets/app
  38. /public/assets/custom
  39. /public/assets/chat/node_modules
  40. /tmp/*
  41. !/tmp/pids
  42. /tmp/pids/*
  43. !/tmp/pids/.keep
  44. /storage/fs
  45. # doorkeeper (OAuth 2)
  46. /public/assets/doorkeeper
  47. # images
  48. /public/assets/images/*
  49. !/public/assets/images/icons/
  50. !/public/assets/images/avatar-bg.png
  51. !/public/assets/images/chat-demo-avatar.png
  52. !/public/assets/images/eyedropper.gif
  53. !/public/assets/images/icons.svg
  54. !/public/assets/images/logo.svg
  55. # Third-Party ------------------------------------------------------------------
  56. # macOS
  57. .DS_Store
  58. # vim
  59. .*.sw[pon]
  60. # RubyMine
  61. /.idea
  62. # Eclipse
  63. /.project
  64. # Byebug
  65. /.byebug_history
  66. # SimpleCov
  67. /coverage
  68. # RDoc / YARD
  69. /doc
  70. # Backup files
  71. *~