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.

69 lines
1.3 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. # 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. .eslintcache
  14. /log/*
  15. !/log/.keep
  16. /tmp
  17. /coverage
  18. /public/system
  19. /public/assets
  20. /public/packs
  21. /public/packs-test
  22. .env
  23. .env.production
  24. .env.development
  25. /node_modules/
  26. /build/
  27. # Ignore Vagrant files
  28. .vagrant/
  29. # Ignore Capistrano customizations
  30. /config/deploy/*
  31. # Ignore IDE files
  32. .vscode/
  33. .idea/
  34. # Ignore postgres + redis + elasticsearch volume optionally created by docker-compose
  35. /postgres
  36. /redis
  37. /elasticsearch
  38. # ignore Helm lockfile, dependency charts, and local values file
  39. /chart/Chart.lock
  40. /chart/charts/*.tgz
  41. /chart/values.yaml
  42. # Ignore Apple files
  43. .DS_Store
  44. # Ignore vim files
  45. *~
  46. *.swp
  47. # Ignore npm debug log
  48. npm-debug.log
  49. # Ignore yarn log files
  50. yarn-error.log
  51. yarn-debug.log
  52. # Ignore vagrant log files
  53. *-cloudimg-console.log
  54. # Ignore Docker option files
  55. docker-compose.override.yml