confluent/.gitignore
StillHammer 5602ce50be Prepare project for GitHub publication
- Add comprehensive README.md with examples and quick start
- Add SECURITY.md with API key safety guidelines
- Add MIT LICENSE
- Add .gitattributes for line ending normalization
- Create .env.example templates (root + ConfluentTranslator)
- Update .gitignore (remove unused rules, add .env variants)
- Archive work documents to docs/archive/
- Remove temporary files (nul, prompt-*.json)

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2025-12-10 08:57:43 +08:00

54 lines
484 B
Plaintext

# Environment variables (SECRETS!)
.env
.env.local
.env.production
# Node.js
node_modules/
dist/
build/
*.tsbuildinfo
.npm
.yarn/cache
.pnp.*
package-lock.json
# Python
__pycache__/
*.py[cod]
*$py.class
.venv/
venv/
env/
# IDE
.idea/
.vscode/
*.swp
*.swo
.claude/
# OS
.DS_Store
Thumbs.db
desktop.ini
# Logs
*.log
logs/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Test & Coverage
coverage/
.pytest_cache/
.coverage
htmlcov/
.nyc_output/
# Temporary files
*.tmp
*.temp
nul