Spaces:
Paused
Paused
| # This file tells Hugging Face Spaces to use Docker | |
| # and exposes the correct port for Flask/Gradio/FastAPI | |
| # No further config needed if Dockerfile is present | |
| __pycache__/ | |
| *.pyc | |
| *.pyo | |
| *.pyd | |
| *.so | |
| *.egg-info/ | |
| *.egg | |
| # Exclude datasets, model weights, and large files | |
| *.pt | |
| *.pth | |
| *.ckpt | |
| *.h5 | |
| *.onnx | |
| *.npz | |
| *.npy | |
| *.tar.gz | |
| *.zip | |
| *.tar | |
| *.gz | |
| *.bz2 | |
| *.7z | |
| *.rar | |
| # Exclude logs and outputs | |
| *.log | |
| *.out | |
| *.tmp | |
| *.swp | |
| # Exclude Jupyter notebooks (if not needed) | |
| *.ipynb | |
| # Exclude local environment files | |
| .env | |
| .venv/ | |
| venv/ | |
| # Exclude OS files | |
| .DS_Store | |
| Thumbs.db | |
| # Exclude other unnecessary folders/files | |
| node_modules/ | |
| datasets/ | |
| models/ | |
| outputs/ | |
| uploads/ | |
| .git | |
| docker_build.log | |
| uploads/ | |