.gitignore 623 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. # Dependencies
  2. node_modules/
  3. npm-debug.log*
  4. yarn-debug.log*
  5. yarn-error.log*
  6. # Environment variables
  7. .env
  8. .env.local
  9. .env.development.local
  10. .env.test.local
  11. .env.production.local
  12. # Build outputs
  13. frontend/build/
  14. backend/dist/
  15. *.tgz
  16. *.tar.gz
  17. # Runtime data
  18. pids
  19. *.pid
  20. *.seed
  21. *.pid.lock
  22. # Coverage directory used by tools like istanbul
  23. coverage/
  24. *.lcov
  25. # nyc test coverage
  26. .nyc_output
  27. # IDE files
  28. .vscode/
  29. .idea/
  30. *.swp
  31. *.swo
  32. *~
  33. # OS generated files
  34. .DS_Store
  35. .DS_Store?
  36. ._*
  37. .Spotlight-V100
  38. .Trashes
  39. ehthumbs.db
  40. Thumbs.db
  41. # Docker
  42. .dockerignore
  43. # Logs
  44. logs
  45. *.log
  46. # Database
  47. *.sqlite3
  48. *.db
  49. # Temporary files
  50. tmp/
  51. temp/