.gitignore 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  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. # logfiles and tempfiles
  33. /log
  34. /public/assets/*.*
  35. /public/assets/addons
  36. /public/assets/app
  37. /public/assets/custom
  38. /public/assets/chat/node_modules
  39. /tmp/*
  40. !/tmp/pids
  41. /tmp/pids/*
  42. !/tmp/pids/.keep
  43. /storage/fs
  44. # doorkeeper (OAuth 2)
  45. /public/assets/doorkeeper
  46. # images
  47. /public/assets/images/node_modules
  48. # Third-Party ------------------------------------------------------------------
  49. # macOS
  50. .DS_Store
  51. # vim
  52. .*.sw[pon]
  53. # RubyMine
  54. /.idea
  55. # Eclipse
  56. /.project
  57. # VSCode
  58. /.vscode
  59. # Byebug
  60. /.byebug_history
  61. # RDoc / YARD
  62. /doc
  63. # Backup files
  64. *~
  65. # Vite Ruby
  66. yarn-error.log
  67. /public/vite
  68. /public/vite-dev
  69. /public/vite-test
  70. /node_modules
  71. # Eslint
  72. .eslint/node_modules
  73. # Storybook
  74. storybook-static