.gitignore 856 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. .env
  2. # Logs
  3. logs
  4. *.log
  5. # Node.js related
  6. node_modules/
  7. npm-debug.log*
  8. yarn-debug.log*
  9. yarn-error.log*
  10. # Dependency directories
  11. pids
  12. *.pid
  13. *.seed
  14. *.pid.lock
  15. # Dependency testing
  16. lib-cov
  17. # Compiled binary addons
  18. *.o
  19. *.lo
  20. *.la
  21. *.al
  22. # Output of `npm build`
  23. build/
  24. # Output of `node-gyp`
  25. build/Release
  26. # .lock-wscript
  27. .lock-wscript
  28. # Yarn Integrity file
  29. .yarn-integrity
  30. # dotenv environment variables file
  31. .env
  32. # npm package lock
  33. package-lock.json
  34. # macOS files
  35. .DS_Store
  36. # Windows thumbnail cache files
  37. Thumbs.db
  38. # Editor-specific files
  39. .vscode/
  40. .idea/
  41. *.suo
  42. *.ntvs*
  43. *.njsproj
  44. *.sln
  45. *.sw?
  46. # Sublime Text specific files
  47. *.sublime-workspace
  48. *.sublime-project
  49. # WebStorm workspace
  50. .idea/workspace.xml
  51. # JetBrains IDEs (PyCharm, PhpStorm, RubyMine, etc)
  52. .idea/
  53. # Test coverage directory used by tools like istanbul
  54. coverage/
  55. # Docs folder
  56. docs/