.gitignore 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. # See https://help.github.com/articles/ignoring-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 bundler config and downloaded libraries.
  7. /.bundle
  8. /vendor/bundle
  9. # Ignore the default SQLite database.
  10. /db/*.sqlite3
  11. /db/*.sqlite3-journal
  12. # Ignore all logfiles and tempfiles.
  13. /log/*
  14. !/log/.keep
  15. /tmp
  16. coverage
  17. public/system
  18. public/assets
  19. public/packs
  20. public/packs-test
  21. .env
  22. .env.production
  23. node_modules/
  24. build/
  25. # Ignore Vagrant files
  26. .vagrant/
  27. # Ignore Capistrano customizations
  28. config/deploy/*
  29. # Ignore IDE files
  30. .vscode/
  31. .idea/
  32. # Ignore postgres + redis + elasticsearch volume optionally created by docker-compose
  33. postgres
  34. redis
  35. elasticsearch
  36. # Ignore Apple files
  37. .DS_Store
  38. # Ignore vim files
  39. *~
  40. *.swp
  41. # Ignore npm debug log
  42. npm-debug.log
  43. # Ignore yarn log files
  44. yarn-error.log
  45. yarn-debug.log
  46. # Ignore Docker option files
  47. docker-compose.override.yml