stocker-env / .gitignore
Hydr473's picture
Comprehensive fix: newer dep stack + HF-dataset cache + verified locally
508cb6a
Raw
History Blame
1.7 kB
# --- Python ----------------------------------------------------------------
__pycache__/
*.py[cod]
*.so
*.pyd
*.egg-info/
.eggs/
build/
dist/
pip-wheel-metadata/
.installed.cfg
# --- Virtualenvs / env -----------------------------------------------------
.venv/
venv/
env/
.python-version
.env
.env.*
!.env.example
# --- Tooling caches --------------------------------------------------------
.pytest_cache/
.mypy_cache/
.ruff_cache/
.hypothesis/
.coverage
.coverage.*
htmlcov/
coverage.xml
.tox/
.nox/
# --- Stocker runtime artifacts --------------------------------------------
# Council vote cache lives in an HF dataset repo (Hydr473/stocker-cache),
# downloaded at Space startup. Never commit it to git.
.cache/
# GRPO runs, eval rollouts, plots, LoRA adapters
training/runs/
!training/runs/.gitkeep
results.json
*.log
# Corpus is built locally — too large for git; the original bundled
# 3-task dataset (data/*.parquet, data/charts/*.png) IS committed.
data/corpus/
data/charts/cache/
# --- Frontend (React/Vite) -------------------------------------------------
frontend/node_modules/
frontend/dist/
frontend/.env.local
# --- Notebook noise --------------------------------------------------------
.ipynb_checkpoints/
*.ipynb_meta
# --- Editors / IDEs --------------------------------------------------------
.vscode/
.idea/
*.swp
*.swo
*~
# --- OS junk ---------------------------------------------------------------
.DS_Store
Thumbs.db
desktop.ini
# --- Local-only model / HF caches (in case anyone runs vLLM in-tree) ------
hf_cache/
models/
*.safetensors
*.gguf
*.bin
# --- Misc ------------------------------------------------------------------
*.bak
*.orig
*.rej
tmp/
.vite/