.gitignore 2.6 KB

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