.gitignore 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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. # legacy translation cache files
  30. /config/locales-*.yml
  31. /config/translations/*.yml
  32. # NPM / Yarn
  33. /node_modules
  34. # logfiles and tempfiles
  35. /log
  36. /public/assets/*.*
  37. /public/assets/addons
  38. /public/assets/app
  39. /public/assets/custom
  40. /public/assets/chat/node_modules
  41. /tmp/*
  42. !/tmp/pids
  43. /tmp/pids/*
  44. !/tmp/pids/.keep
  45. /storage/fs
  46. # doorkeeper (OAuth 2)
  47. /public/assets/doorkeeper
  48. # images
  49. /public/assets/images/node_modules
  50. # Third-Party ------------------------------------------------------------------
  51. # macOS
  52. .DS_Store
  53. # vim
  54. .*.sw[pon]
  55. # RubyMine
  56. /.idea
  57. # Eclipse
  58. /.project
  59. # VSCode
  60. /.vscode
  61. # Byebug
  62. /.byebug_history
  63. # RDoc / YARD
  64. /doc
  65. # Backup files
  66. *~