| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- # Python
- __pycache__/
- *.py[cod]
- *$py.class
- *.so
- .Python
- # Virtual Environment
- .venv/
- venv/
- ENV/
- env/
- # IDE
- .vscode/
- .idea/
- *.swp
- *.swo
- *~
- .DS_Store
- # Environment variables
- .env
- .env.local
- .env.*.local
- # Logs
- logs/
- *.log
- *.log.*
- # Node modules (if any)
- node_modules/
- # System files
- Thumbs.db
- .DS_Store
- *.bak
- *.tmp
- # Python package files
- *.egg
- *.egg-info/
- dist/
- build/
- *.whl
- # Testing
- .pytest_cache/
- .coverage
- htmlcov/
- .tox/
- # Configuration overrides (keep templates but ignore local changes)
- video_config_local.yaml
- mcp_config_local.json
|