Spaces:
Running
Running
| # Git | |
| .git | |
| .gitignore | |
| # Python | |
| __pycache__ | |
| *.py[cod] | |
| *$py.class | |
| *.so | |
| .Python | |
| .venv | |
| venv | |
| env | |
| .env | |
| *.egg-info | |
| dist | |
| build | |
| .eggs | |
| # Node | |
| node_modules | |
| .npm | |
| .pnpm-store | |
| # IDE | |
| .idea | |
| .vscode | |
| *.swp | |
| *.swo | |
| # Testing | |
| .pytest_cache | |
| .coverage | |
| htmlcov | |
| .tox | |
| # Documentation (not needed in image) | |
| docs | |
| # Development files | |
| *.log | |
| .DS_Store | |
| Thumbs.db | |
| # Notebooks (not needed for deployment) | |
| notebooks | |
| *.ipynb | |
| # POC code | |
| poc | |
| # Local data | |
| *.lancedb | |
| data/ | |
| # Frontend build output (we build fresh) | |
| frontend/out | |
| frontend/.next | |
| frontend/node_modules | |
| # hyper-scatter (built separately if present) | |
| hyper-scatter | |
| # Assets (README images) | |
| assets | |