.gitignore 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  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. # storage (copy from config/zammad/storage.yml.dist)
  13. /config/zammad/storage.yml
  14. # local backup config file
  15. /contrib/backup/config
  16. # Dynamic environment config for Gitlab
  17. /.gitlab/environment.env
  18. # Third-Party ------------------------------------------------------------------
  19. # The config files / dev tools listed below are optional
  20. # and may not be present on most users' machines
  21. # Bundler
  22. /.bundle
  23. /Gemfile.local
  24. # Clutter ======================================================================
  25. # These files are automatically generated;
  26. # in most cases, committing them won't do anything other than bloat the repo
  27. # Zammad -----------------------------------------------------------------------
  28. # database files
  29. /db/*.sqlite3
  30. /db/schema.rb
  31. # dev ssl
  32. /config/ssl/*
  33. # legacy translation cache files
  34. /config/locales-*.yml
  35. /config/translations/*.yml
  36. # logfiles and tempfiles
  37. /log
  38. /public/assets/*.*
  39. /public/assets/frontend/vite
  40. /public/assets/frontend/vite-dev
  41. /public/assets/addons
  42. /public/assets/app
  43. /public/assets/custom
  44. /public/assets/chat/node_modules
  45. /tmp/*
  46. !/tmp/README.md
  47. !/tmp/pids
  48. /tmp/pids/*
  49. !/tmp/pids/.keep
  50. /storage/fs
  51. # doorkeeper (OAuth 2)
  52. /public/assets/doorkeeper
  53. # images
  54. /public/assets/images/node_modules
  55. # Ignore generated hashed file names.
  56. /public/assets/images/????????????????????????????????.*
  57. # Third-Party ------------------------------------------------------------------
  58. # macOS
  59. .DS_Store
  60. # vim
  61. .*.sw[pon]
  62. # RubyMine
  63. /.idea
  64. # Eclipse
  65. /.project
  66. # VSCode
  67. /.vscode
  68. # Byebug
  69. /.byebug_history
  70. # Backup files
  71. *~
  72. # Vite PWA
  73. /app/frontend/dev-dist
  74. # Node
  75. **/node_modules
  76. yarn-error.log
  77. .yarn/cache
  78. # Cypress
  79. .dev/cypress/screenshots/*
  80. .dev/cypress/videos/*
  81. .dev/cypress/**/__diff_output__/**
  82. **/__image_snapshots__/**/*.diff.png
  83. **/__image_snapshots__/**/*.actual.png
  84. # Auto Generated
  85. schema.graphql
  86. # Packages
  87. *.zpm