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.

58 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. .env
  21. .env.production
  22. node_modules/
  23. build/
  24. # Ignore Vagrant files
  25. .vagrant/
  26. # Ignore Capistrano customizations
  27. config/deploy/*
  28. # Ignore IDE files
  29. .vscode/
  30. .idea/
  31. # Ignore postgres + redis volume optionally created by docker-compose
  32. postgres
  33. redis
  34. # Ignore Apple files
  35. .DS_Store
  36. # Ignore vim files
  37. *~
  38. *.swp
  39. # Ignore npm debug log
  40. npm-debug.log
  41. # Ignore yarn log files
  42. yarn-error.log
  43. yarn-debug.log
  44. # Ignore Docker option files
  45. docker-compose.override.yml