| .git | |
| .gitignore | |
| .DS_Store | |
| .venv | |
| .env | |
| .pytest_cache | |
| __pycache__ | |
| *.pyc | |
| *.pyo | |
| *.pyd | |
| # Local artifacts / logs | |
| wandb | |
| checkpoints | |
| final_model | |
| *.log | |
| # Build and packaging metadata | |
| *.egg-info | |
| dist | |
| build | |
| # Editor / tooling | |
| .cursor | |
| .vscode | |
| # uv lock file (not needed in Docker, causes confusion) | |
| uv.lock | |
| # Test venvs created during debugging | |
| venv_test* | |
| .tmp_venv | |
| # Scratch test scripts | |
| test_pip*.sh | |
| req_test*.txt | |
| get_logs.py | |
| # Large temp dirs | |
| scratch/ | |