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.

64 lines
1.1 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. .env.development
  24. node_modules/
  25. build/
  26. # Ignore Vagrant files
  27. .vagrant/
  28. # Ignore Capistrano customizations
  29. config/deploy/*
  30. # Ignore IDE files
  31. .vscode/
  32. .idea/
  33. # Ignore postgres + redis + elasticsearch volume optionally created by docker-compose
  34. postgres
  35. redis
  36. elasticsearch
  37. # Ignore Apple files
  38. .DS_Store
  39. # Ignore vim files
  40. *~
  41. *.swp
  42. # Ignore npm debug log
  43. npm-debug.log
  44. # Ignore yarn log files
  45. yarn-error.log
  46. yarn-debug.log
  47. # Ignore vagrant log files
  48. ubuntu-xenial-16.04-cloudimg-console.log
  49. # Ignore Docker option files
  50. docker-compose.override.yml