.gitignore 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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. # logfiles and tempfiles
  31. /log
  32. /public/assets/*.*
  33. /public/assets/app
  34. /public/assets/custom
  35. /public/assets/chat/node_modules
  36. /tmp/*
  37. !/tmp/pids
  38. /tmp/pids/*
  39. !/tmp/pids/.keep
  40. /storage/fs
  41. # doorkeeper (OAuth 2)
  42. /public/assets/doorkeeper
  43. # images
  44. /public/assets/images/*
  45. !/public/assets/images/icons/
  46. !/public/assets/images/avatar-bg.png
  47. !/public/assets/images/chat-demo-avatar.png
  48. !/public/assets/images/eyedropper.gif
  49. !/public/assets/images/icons.svg
  50. !/public/assets/images/logo.svg
  51. # Third-Party ------------------------------------------------------------------
  52. # macOS
  53. .DS_Store
  54. # vim
  55. .*.sw[pon]
  56. # RubyMine
  57. /.idea
  58. # Eclipse
  59. /.project
  60. # Byebug
  61. /.byebug_history
  62. # SimpleCov
  63. /coverage
  64. # RDoc / YARD
  65. /doc