Spaces:
Sleeping
Sleeping
| # Git | |
| .git | |
| .gitignore | |
| # Python Cache | |
| __pycache__ | |
| *.pyc | |
| *.pyo | |
| *.pyd | |
| # Local Virtual Environments (Crucial to ignore) | |
| venv | |
| env | |
| .env | |
| .venv | |
| # Local Model Folders (Docker will download a fresh copy on Linux) | |
| dnabert_local | |
| *.bin | |
| *.safetensors | |
| # Mac System Files | |
| .DS_Store | |
| # Frontend Artifacts (If you have them in the same folder) | |
| node_modules | |
| .next | |
| build | |
| dist | |
| # Docker | |
| Dockerfile | |
| .dockerignore |