- Implement Claude API smart router with automatic failover - Support 4 providers: Claude Pro, DeepSeek, Kimi, Claude API - Update models: DeepSeek to deepseek-reasoner, Kimi to kimi-k2 - Add AdWireGuard: WireGuard VPN + AdGuard DNS filtering - Consolidate tokens into single tokens.txt file - Add mDNS reflector to Home Assistant setup 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
32 lines
390 B
Plaintext
32 lines
390 B
Plaintext
# Ignore all data directories
|
|
*/data/
|
|
*/postgres/
|
|
*/vw-data/
|
|
*/*.db
|
|
*/*.sqlite
|
|
*/logs/
|
|
*/db_data/
|
|
*/caddy_data/
|
|
*/caddy_config/
|
|
*/config/
|
|
|
|
# Ignore environment files
|
|
.env
|
|
.env.local
|
|
|
|
# Ignore temporary files
|
|
*.tmp
|
|
*.log
|
|
|
|
# Ignore HA specific directories
|
|
HA/config/
|
|
HA/db_data/
|
|
|
|
# Router specific ignores
|
|
router/__pycache__/
|
|
router/venv/
|
|
router/*.pyc
|
|
router/*.log
|
|
|
|
# Keep structure
|
|
!.gitkeep |