.gitignore 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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. /node_modules/
  25. /build/
  26. # Ignore Vagrant files
  27. .vagrant/
  28. # Ignore IDE files
  29. .vscode/
  30. .idea/
  31. # Ignore postgres + redis + elasticsearch volume optionally created by docker-compose
  32. /postgres
  33. /postgres14
  34. /redis
  35. /elasticsearch
  36. # Ignore Apple files
  37. .DS_Store
  38. # Ignore vim files
  39. *~
  40. *.swp
  41. # Ignore npm debug log
  42. npm-debug.log
  43. # Ignore yarn log files
  44. yarn-error.log
  45. yarn-debug.log
  46. # From https://yarnpkg.com/getting-started/qa#which-files-should-be-gitignored
  47. .pnp.*
  48. .yarn/*
  49. !.yarn/patches
  50. !.yarn/plugins
  51. !.yarn/releases
  52. !.yarn/sdks
  53. !.yarn/versions
  54. # Ignore vagrant log files
  55. *-cloudimg-console.log
  56. # Ignore Docker option files
  57. docker-compose.override.yml