Add .claude/session-state.json, .claude/token-checkpoints.json, and
SESSION_CLOSEDOWN_*.md to .gitignore. These are auto-generated session
files that should not be committed.
🤖 Generated with Claude Code
Co-Authored-By: Claude <noreply@anthropic.com>
66 lines
773 B
Text
66 lines
773 B
Text
# Dependencies
|
|
node_modules/
|
|
package-lock.json
|
|
|
|
# Environment variables
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# Security / Credentials (inst_072: Defense Layer 1)
|
|
*.pem
|
|
*.key
|
|
*.p12
|
|
*.pfx
|
|
credentials.json
|
|
secrets
|
|
secrets.*
|
|
*.secret
|
|
.secrets/
|
|
config/secrets.json
|
|
auth.json
|
|
|
|
# Logs
|
|
logs/
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# MongoDB data
|
|
data/mongodb/*
|
|
!data/mongodb/.gitkeep
|
|
|
|
# Generated files
|
|
public/downloads/*.pdf
|
|
public/downloads/*.epub
|
|
public/downloads/*.docx
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Testing
|
|
coverage/
|
|
.nyc_output/
|
|
|
|
# Build
|
|
dist/
|
|
build/
|
|
|
|
# Temporary files
|
|
tmp/
|
|
temp/
|
|
*.tmp
|
|
|
|
# Claude session state files (auto-generated, not committed)
|
|
.claude/session-state.json
|
|
.claude/token-checkpoints.json
|
|
SESSION_CLOSEDOWN_*.md
|