2
0

.gitignore 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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. tests/.tmp-*
  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. .bun-debug.log*
  27. .workflow/
  28. # Bun lock files
  29. bun.lock
  30. bun.lockb
  31. .bun-cache/
  32. # env files (can opt-in for committing if needed)
  33. .env*
  34. !.env.example
  35. # vercel
  36. .vercel
  37. # typescript
  38. *.tsbuildinfo
  39. next-env.d.ts
  40. # tooling & logs
  41. .cursor/
  42. .claude/
  43. .codex/
  44. .serena/
  45. !src/app/dashboard/logs/
  46. !src/app/settings/logs/
  47. .idea/
  48. .specify
  49. # docker volumes data
  50. /data/*
  51. !/data/.gitkeep
  52. !/data/README.md
  53. # dev tools (local development utilities)
  54. # Keep the dev toolchain in repo; ignore local-only overrides.
  55. /dev/.env
  56. /dev/.env.*
  57. !/dev/.env.example
  58. # translation checklists and temporary docs
  59. TRANSLATIONS_CHECKLIST.txt
  60. TRANSLATIONS_CHECKLIST.md
  61. # i18n verification screenshots (temporary)
  62. /i18n-verification/
  63. /bmad
  64. # docs-site submodule build artifacts
  65. docs-site/.next/
  66. docs-site/node_modules/
  67. # local scratch
  68. tmp/
  69. .trae/
  70. .sisyphus
  71. .ace-tool/
  72. .worktrees/