Spaces:
Sleeping
Sleeping
| # HuggingFace Spaces ignore file | |
| # Exclude files not needed for deployment | |
| # Development files | |
| .git/ | |
| .gitignore | |
| *.code-workspace | |
| .vscode/ | |
| .idea/ | |
| *.sublime-* | |
| # Testing files | |
| tests/ | |
| pytest.ini | |
| htmlcov/ | |
| .coverage | |
| .pytest_cache/ | |
| # Documentation and planning | |
| docs/ | |
| notebooks/ | |
| *.ipynb | |
| migration_plan.md | |
| test_migration.py | |
| # Build files | |
| build/ | |
| dist/ | |
| *.egg-info/ | |
| __pycache__/ | |
| *.pyc | |
| *.pyo | |
| *.pyd | |
| .Python | |
| # Local environment | |
| venv/ | |
| env/ | |
| ENV/ | |
| .env | |
| .env.local | |
| # Logs and temp files | |
| logs/ | |
| *.log | |
| *.tmp | |
| *.temp | |
| *~ | |
| # OS files | |
| .DS_Store | |
| Thumbs.db | |
| # Large datasets and models | |
| datasets/ | |
| models/*.pkl | |
| models/*.joblib | |
| models/*.pt | |
| models/*.pth | |
| *.bin | |
| *.safetensors | |
| # Config files not needed in production | |
| configs/ | |
| .env.example | |
| # Development requirements (use requirements-hf.txt instead) | |
| requirements.txt | |
| # Setup files not needed for docker deployment | |
| setup.py | |
| MANIFEST.in | |
| # CI/CD files | |
| .github/ | |
| .gitlab-ci.yml | |
| # Backup files | |
| *.backup | |
| *.bak | |
| *.orig |