.gitignore 1.3 KB

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