.gitignore 883 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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. .env
  20. .env.production
  21. node_modules/
  22. build/
  23. # Ignore Vagrant files
  24. .vagrant/
  25. # Ignore Capistrano customizations
  26. config/deploy/*
  27. # Ignore IDE files
  28. .vscode/
  29. # Ignore postgres + redis volume optionally created by docker-compose
  30. postgres
  31. redis
  32. # Ignore Apple files
  33. .DS_Store
  34. # Ignore vim files
  35. *~
  36. *.swp
  37. /public/packs
  38. /node_modules