.gitignore 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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 translation cache files
  21. /config/locales*.yml
  22. /config/translations/*.yml
  23. # Ignore generated documentation
  24. /doc
  25. # Ignore coverage stuff
  26. /coverage
  27. # Ignore the default SQLite database.
  28. /db/*.sqlite3
  29. # Ignore local changes to schema.rb (e. g. through extentions)
  30. /db/schema.rb
  31. # Ignore custom gem file
  32. /Gemfile.local
  33. # Ignore node modules
  34. /node_modules
  35. # Ignore all logfiles and tempfiles.
  36. /log
  37. /public/assets/*.*
  38. /public/assets/app
  39. /public/assets/custom
  40. /public/assets/chat/node_modules
  41. /tmp/*
  42. /tmp/pids/*
  43. /storage/fs
  44. # except /tmp/pids/ which is needed for certain Zammad processes
  45. !/tmp
  46. !/tmp/pids
  47. !/tmp/pids/.keep
  48. # exclude the figaro ENV setting helper file - run 'bundle exec figaro install' for creating your own
  49. # see: https://github.com/laserlemon/figaro
  50. # Ignore application configuration
  51. /config/application.yml