.gitignore 509 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. # See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
  2. # dependencies
  3. /node_modules
  4. /.pnp
  5. .pnp.js
  6. # testing
  7. /coverage
  8. # next.js
  9. /.next/
  10. /out/
  11. out.zip
  12. # production
  13. /build
  14. # misc
  15. .DS_Store
  16. *.pem
  17. # debug
  18. npm-debug.log*
  19. .pnpm-debug.log*
  20. # local env files
  21. .env*.local
  22. # vercel
  23. .vercel
  24. # typescript
  25. *.tsbuildinfo
  26. next-env.d.ts
  27. dev
  28. .vscode
  29. .idea
  30. # docker-compose env files
  31. .env
  32. *.key
  33. *.key.pub
  34. masks.json
  35. # mcp config
  36. app/mcp/mcp_config.json
  37. # cursor
  38. .cursor/
  39. .history/