Spaces:
Sleeping
Sleeping
| # Python | |
| __pycache__/ | |
| *.py[cod] | |
| *$py.class | |
| *.so | |
| *.egg-info/ | |
| *.egg | |
| dist/ | |
| build/ | |
| .eggs/ | |
| # Virtual environments | |
| .venv/ | |
| venv/ | |
| ENV/ | |
| # IDE | |
| .vscode/ | |
| .idea/ | |
| *.swp | |
| *.swo | |
| *~ | |
| # Testing | |
| .pytest_cache/ | |
| .coverage | |
| htmlcov/ | |
| .mypy_cache/ | |
| .ruff_cache/ | |
| # Environment | |
| .env | |
| .env.local | |
| .env.production | |
| # Storage (local dev data) | |
| data/ | |
| *.db | |
| # OS | |
| .DS_Store | |
| Thumbs.db | |
| # Uploads and job artifacts (local) | |
| uploads/ | |
| exports/ | |
| # HuggingFace cache (local) | |
| .huggingface/ | |
| # Node (frontend) | |
| frontend/node_modules/ | |
| frontend/dist/ | |