- Add .gitignore to prevent sensitive data - Replace /home/roman with ~/.claude placeholder - No API keys or credentials in repository - No chat logs or conversation history 🤖 Generated with Claude Code Co-Authored-By: Claude <noreply@anthropic.com>
41 lines
524 B
Plaintext
41 lines
524 B
Plaintext
# Sensitive data and credentials
|
|
.env
|
|
.env.*
|
|
*.key
|
|
*.pem
|
|
*.secret
|
|
credentials.json
|
|
config.local.json
|
|
settings.local.json
|
|
|
|
# User-specific paths (replace with placeholders)
|
|
# /home/roman -> ~/.claude or ~/user
|
|
|
|
# Chat logs and conversation history
|
|
*.chat
|
|
*.conversation
|
|
*.transcript
|
|
chat-logs/
|
|
conversations/
|
|
sessions/
|
|
|
|
# API keys and tokens
|
|
api-keys.txt
|
|
secrets.txt
|
|
tokens.txt
|
|
|
|
# Claude Code CLI local data
|
|
.claude/local/
|
|
.claude/cache/
|
|
.claude/logs/
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp
|
|
*.bak
|
|
*~
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|