From 158b09416dcc5e280a9b106c17bb216717e8b567 Mon Sep 17 00:00:00 2001 From: Keshav Anand Date: Tue, 10 Mar 2026 18:47:55 -0500 Subject: [PATCH] boilerplate --- .gitignore | 118 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 118 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..74bfe97 --- /dev/null +++ b/.gitignore @@ -0,0 +1,118 @@ +# ── Data & Models (too large / copyright) ──────────────────────────────────── +data/raw/ +data/processed/ +data/vectorstore/ +*.pdf +*.epub +*.mobi +*.pkl +*.pickle +*.bin +*.pt +*.pth +*.onnx +*.safetensors +models/ + +# ── Secrets ─────────────────────────────────────────────────────────────────── +.env +.env.* +!.env.example +*.pem +*.key +secrets/ + +# ── Python ──────────────────────────────────────────────────────────────────── +__pycache__/ +*.py[cod] +*$py.class +*.pyc +*.pyo +*.pyd +.Python +*.so + +# ── Virtual Environments ────────────────────────────────────────────────────── +.venv/ +venv/ +env/ +ENV/ +.virtualenv/ +Pipfile.lock + +# ── Package / Build ─────────────────────────────────────────────────────────── +build/ +dist/ +*.egg-info/ +*.egg +.eggs/ +site/ +MANIFEST + +# ── Testing & Coverage ──────────────────────────────────────────────────────── +.pytest_cache/ +.coverage +.coverage.* +coverage.xml +htmlcov/ +*.test.db +.tox/ + +# ── Linting & Type Checking ─────────────────────────────────────────────────── +.ruff_cache/ +.mypy_cache/ +.dmypy.json +pyrightconfig.json + +# ── Jupyter ─────────────────────────────────────────────────────────────────── +.ipynb_checkpoints/ +*.ipynb + +# ── Logs ────────────────────────────────────────────────────────────────────── +logs/ +*.log +*.log.* +log/ + +# ── OS ──────────────────────────────────────────────────────────────────────── +.DS_Store +.DS_Store? +._* +.Spotlight-V100 +.Trashes +Thumbs.db +ehthumbs.db +desktop.ini + +# ── IDEs ────────────────────────────────────────────────────────────────────── +.vscode/ +!.vscode/extensions.json +!.vscode/settings.json.example +.idea/ +*.swp +*.swo +*~ +.project +.classpath +*.sublime-project +*.sublime-workspace + +# ── Qdrant ──────────────────────────────────────────────────────────────────── +qdrant_storage/ +collection/ +snapshots/ + +# ── Ollama ──────────────────────────────────────────────────────────────────── +.ollama/ + +# ── HuggingFace cache ───────────────────────────────────────────────────────── +.cache/ +~/.cache/huggingface/ + +# ── Misc ────────────────────────────────────────────────────────────────────── +tmp/ +temp/ +scratch/ +*.tmp +*.bak +*.swp