.gitignore 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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
  43. # exclude the figaro ENV setting helper file - run 'bundle exec figaro install' for creating your own
  44. # see: https://github.com/laserlemon/figaro
  45. # Ignore application configuration
  46. /config/application.yml