| 1234567891011121314151617181920212223242526272829 |
- # 🔐 SSH Keys (NEVER commit - entire directory)
- keys/
- # 📝 Build artifacts
- build.log
- *.log
- # 🐳 Docker
- .dockerignore
- # 🔧 IDE/Editor
- .vscode/
- .idea/
- *.swp
- *.swo
- *~
- # 🖥️ OS
- .DS_Store
- Thumbs.db
- # 📦 Dependencies
- node_modules/
- __pycache__/
- *.pyc
- # 🧪 Testing
- .pytest_cache/
- coverage/
|