.gitignore 728 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. # See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
  2. # dependencies
  3. /node_modules
  4. /.pnp
  5. .pnp.*
  6. .yarn/*
  7. !.yarn/patches
  8. !.yarn/plugins
  9. !.yarn/releases
  10. !.yarn/versions
  11. # testing
  12. /coverage
  13. # next.js
  14. /.next/
  15. /out/
  16. # production
  17. /build
  18. # misc
  19. .DS_Store
  20. *.pem
  21. # debug
  22. npm-debug.log*
  23. yarn-debug.log*
  24. yarn-error.log*
  25. .pnpm-debug.log*
  26. # env files (can opt-in for committing if needed)
  27. .env*
  28. # vercel
  29. .vercel
  30. # typescript
  31. *.tsbuildinfo
  32. next-env.d.ts
  33. /src/generated/prisma
  34. # SQLite database files
  35. *.db
  36. *.db-journal
  37. data/
  38. # Upload directories - ignore image files but keep structure
  39. uploads/photos_profile/*
  40. !uploads/photos_profile/.gitkeep
  41. # Image files globally
  42. *.jpg
  43. *.jpeg
  44. *.png
  45. *.gif
  46. *.webp