.gitignore 2.5 KB

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