.gitignore 603 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. # See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
  2. # dependencies
  3. /node_modules
  4. /cron/node_modules
  5. /.pnp
  6. .pnp.*
  7. .yarn/*
  8. !.yarn/patches
  9. !.yarn/plugins
  10. !.yarn/releases
  11. !.yarn/versions
  12. # testing
  13. /coverage
  14. # next.js
  15. /.next/
  16. /out/
  17. # production
  18. /build
  19. # misc
  20. .DS_Store
  21. *.pem
  22. # debug
  23. npm-debug.log*
  24. yarn-debug.log*
  25. yarn-error.log*
  26. .pnpm-debug.log*
  27. # env files
  28. .env
  29. .env.local
  30. .env.production
  31. .env.staging
  32. # supabase
  33. supabase/.temp/
  34. # typescript
  35. *.tsbuildinfo
  36. next-env.d.ts
  37. .claude/
  38. # docker
  39. docker-compose.override.yml
  40. # local debugging artifacts
  41. screenshot-*.png