.gitignore 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. # Environment variables and API keys
  2. .env
  3. .env.local
  4. .env.development
  5. .env.test
  6. .env.production
  7. .env.*.local
  8. # API keys and secrets
  9. *.key
  10. *.pem
  11. *.p12
  12. *.pfx
  13. secrets/
  14. keys/
  15. api-keys/
  16. # Telegram bot tokens (specific to this project)
  17. telegram-token.txt
  18. telegram-config.json
  19. bot-token.txt
  20. # Node.js
  21. node_modules/
  22. npm-debug.log*
  23. yarn-debug.log*
  24. yarn-error.log*
  25. .pnpm-debug.log*
  26. # Bun
  27. bun.lockb
  28. # TypeScript
  29. *.tsbuildinfo
  30. dist/
  31. build/
  32. # IDE and editor files
  33. .vscode/
  34. .idea/
  35. *.swp
  36. *.swo
  37. *~
  38. # OS generated files
  39. .DS_Store
  40. .DS_Store?
  41. ._*
  42. .Spotlight-V100
  43. .Trashes
  44. ehthumbs.db
  45. Thumbs.db
  46. # Logs
  47. logs/
  48. *.log
  49. # Runtime data
  50. pids/
  51. *.pid
  52. *.seed
  53. *.pid.lock
  54. # Coverage directory used by tools like istanbul
  55. coverage/
  56. *.lcov
  57. # nyc test coverage
  58. .nyc_output
  59. # Dependency directories
  60. jspm_packages/
  61. # Optional npm cache directory
  62. .npm
  63. # Optional eslint cache
  64. .eslintcache
  65. # Microbundle cache
  66. .rpt2_cache/
  67. .rts2_cache_cjs/
  68. .rts2_cache_es/
  69. .rts2_cache_umd/
  70. # Optional REPL history
  71. .node_repl_history
  72. # Output of 'npm pack'
  73. *.tgz
  74. # Yarn Integrity file
  75. .yarn-integrity
  76. # parcel-bundler cache (https://parceljs.org/)
  77. .cache
  78. .parcel-cache
  79. # Next.js build output
  80. .next
  81. # Nuxt.js build / generate output
  82. .nuxt
  83. dist
  84. # Gatsby files
  85. .cache/
  86. public
  87. # Storybook build outputs
  88. .out
  89. .storybook-out
  90. # Temporary folders
  91. tmp/
  92. temp/
  93. # OpenCode specific
  94. .opencode/log/
  95. .opencode/cache/
  96. .opencode/temp/
  97. # Local development
  98. .local/
  99. local/