.gitignore 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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. # Ignore .swp files
  7. .*.swp
  8. # Ignore bundler config
  9. /.bundle
  10. # Ignore mac stuff
  11. .DS_Store
  12. # Ignore Rubymine config
  13. /.idea
  14. # Ignore .project files
  15. /.project
  16. # Ignore .rbenv-vars
  17. /.rbenv-vars
  18. # Ignore database config
  19. /config/database.yml
  20. # Ignore coverage stuff
  21. /coverage
  22. # Ignore the default SQLite database.
  23. /db/*.sqlite3
  24. # Ignore local changes to schema.rb (e. g. through extentions)
  25. /db/schema.rb
  26. # Ignore custom gem file
  27. /Gemfile.local
  28. # Ignore node modules
  29. /node_modules
  30. # Ignore all logfiles and tempfiles.
  31. /log
  32. /public/assets/*.*
  33. /public/assets/app
  34. /public/assets/custom
  35. /public/assets/chat/node_modules
  36. /tmp/*
  37. /tmp/pids/*
  38. /storage/fs
  39. # except /tmp/pids/ which is needed for certain Zammad processes
  40. !/tmp
  41. !/tmp/pids
  42. !/tmp/pids/.keep