Spaces:
Sleeping
Sleeping
| # Ignore Python cache and logs | |
| __pycache__/ | |
| *.pyc | |
| *.pyo | |
| *.log | |
| # Ignore environment files with secrets | |
| .env | |
| *.env | |
| # Ignore IDE/editor config | |
| .vscode/ | |
| .idea/ | |
| # Ignore OS/system files | |
| .DS_Store | |
| Thumbs.db | |
| # Ignore test scripts or diagnostics | |
| test_*.py | |
| diagnostic.sh | |
| # Ignore raw media or large unneeded assets | |
| *.mp4 | |
| *.mov | |
| *.avi | |
| assets/raw_videos/ | |
| screenshots/ | |
| # Ignore Kafka jars or build artifacts (if any) | |
| *.jar | |
| *.class | |
| build/ | |
| dist/ | |
| # Ignore Docker stuff not needed in repo | |
| *.pid | |
| *.sock | |