Spaces:
Sleeping
Sleeping
| # === System & IDE === | |
| .DS_Store | |
| .idea/ | |
| .vscode/ | |
| *.swp | |
| *.swo | |
| # === Environment & Secrets === | |
| .env | |
| .env.* | |
| !.env.example | |
| venv/ | |
| .venv/ | |
| env/ | |
| .Python | |
| # === Python === | |
| __pycache__/ | |
| *.py[oc] | |
| build/ | |
| dist/ | |
| wheels/ | |
| *.egg-info/ | |
| .mypy_cache/ | |
| .dmypy.json | |
| dmypy.json | |
| # === Database & Data === | |
| *.db | |
| *.sqlite | |
| *.sqlite3 | |
| data/ | |
| !data/.gitkeep | |
| # Exclude model weights or large files | |
| *.pth | |
| *.pt | |
| *.bin | |
| # === Logs === | |
| *.log | |
| logs/ | |
| npm-debug.log* | |
| yarn-debug.log* | |
| yarn-error.log* | |
| # === Frontend (Node.js/React) === | |
| node_modules/ | |
| frontend/node_modules/ | |
| frontend/dist/ | |
| frontend/build/ | |
| frontend/.eslintcache | |
| frontend/coverage/ | |
| # === Testing & Quality Assurance === | |
| # Pytest | |
| .pytest_cache/ | |
| .test_caches/ | |
| .wolfram_cache/ | |
| .test_wolfram_*/ | |
| .test_cache_*/ | |
| .cache/ | |
| .session_memory/ | |
| # Coverage | |
| .coverage | |
| .coverage.* | |
| htmlcov/ | |
| coverage.xml | |
| *.cover | |
| # Test Results | |
| # Test Results | |
| backend/tests/debug_*.py | |
| backend/tests/set_memory_*.py | |
| test_results.txt | |
| test-reports/ | |
| junit/ | |
| # some locals file | |
| note.md |