You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

59 lines
1.0 KiB

8 years ago
8 years ago
8 years ago
  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 volume optionally created by docker-compose
  33. postgres
  34. redis
  35. # Ignore Apple files
  36. .DS_Store
  37. # Ignore vim files
  38. *~
  39. *.swp
  40. # Ignore npm debug log
  41. npm-debug.log
  42. # Ignore yarn log files
  43. yarn-error.log
  44. yarn-debug.log
  45. # Ignore Docker option files
  46. docker-compose.override.yml