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.

57 lines
1020 B

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