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.

73 lines
1.2 KiB

8 years ago
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. *.orig
  7. # Ignore bundler config and downloaded libraries.
  8. /.bundle
  9. /vendor/bundle
  10. # Ignore the default SQLite database.
  11. /db/*.sqlite3
  12. /db/*.sqlite3-journal
  13. # Ignore all logfiles and tempfiles.
  14. .eslintcache
  15. /log/*
  16. !/log/.keep
  17. /tmp
  18. /coverage
  19. /public/system
  20. /public/assets
  21. /public/packs
  22. /public/packs-test
  23. .env
  24. .env.production
  25. .env.development
  26. /node_modules/
  27. /build/
  28. # Ignore Vagrant files
  29. .vagrant/
  30. # Ignore Capistrano customizations
  31. /config/deploy/*
  32. # Ignore IDE files
  33. .vscode/
  34. .idea/
  35. # Ignore postgres + redis + elasticsearch volume optionally created by docker-compose
  36. /postgres
  37. /redis
  38. /elasticsearch
  39. # ignore Helm dependency charts
  40. /chart/charts/*.tgz
  41. # Ignore Apple files
  42. .DS_Store
  43. # Ignore vim files
  44. *~
  45. *.swp
  46. # Ignore npm debug log
  47. npm-debug.log
  48. # Ignore yarn log files
  49. yarn-error.log
  50. yarn-debug.log
  51. # Ignore vagrant log files
  52. *-cloudimg-console.log
  53. # Ignore Docker option files
  54. docker-compose.override.yml
  55. # ctag
  56. .ctags
  57. tags