.gitignore 2.2 KB

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