Files
AI_template/.gitignore
olekhondera fd283fd9f2 fix: expand .gitignore to cover all .env.* variants
Replaced narrow .env.local / .env.*.local rules with .env.* to prevent
accidental commit of .env.production, .env.development, .env.staging, etc.
Explicitly allowlisted .env.example so it remains tracked.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-02-22 23:47:06 +02:00

47 lines
465 B
Plaintext

# General OS files
.DS_Store
Thumbs.db
# Editors/IDEs
.idea/
.vscode/
*.iml
# Logs
logs/
*.log
*.log.*
*.pid
*.pid.lock
# Claude Code hooks audit log
.claude/hooks/audit.log
# Environment files
.env
.env.*
!.env.example
# Node / JavaScript
node_modules/
dist/
build/
coverage/
.nyc_output/
.eslintcache
# Next.js / frameworks
.next/
.vercel/
.turbo/
.cache/
.tmp/
# TypeScript
*.tsbuildinfo
# Package managers
yarn-error.log*
npm-debug.log*
pnpm-debug.log*