# Docker ignore file for Hugging Face Space # Git .git .gitignore .gitattributes # Python cache __pycache__/ *.py[cod] *$py.class *.pyc # Virtual environments venv/ env/ .venv/ .env/ # IDE .vscode/ .idea/ *.swp *.swo # OS .DS_Store Thumbs.db # Test files test_app.py example_usage.py sample_*.jpg *.tmp *.temp # Documentation *.md !README.md # Development scripts run.bat spaces_config.yaml # Model cache (will be downloaded at runtime) checkpoints/ *.pt *.pth *.bin # Logs *.log logs/