# ============================================================================= # QWHPI — Quebec Weekly Housing Price Index # Author : Simon-Pierre Boucher # Contact : contact@spboucher.ai # File : .gitignore # Purpose : Keep transaction-level data, build artifacts and caches out of git. # ============================================================================= # --------------------------------------------------------------------------- # DATA POLICY — individual transaction data NEVER enters the repository. # Only aggregated, published series (indexes, liquidity, coverage, vintages) # are versioned. See README § Data policy. # --------------------------------------------------------------------------- data/raw/ data/interim/ data/processed/transactions_clean.parquet data/processed/geo_join.parquet # Large external boundary files (documented in data/external/SDA_SOURCE.md) data/external/*.gpkg data/external/*.gpkg.zip # Python __pycache__/ *.py[cod] *.egg-info/ .venv/ venv/ .pytest_cache/ .mypy_cache/ .ruff_cache/ # Node / Next.js node_modules/ web/.next/ web/out/ *.tsbuildinfo web/next-env.d.ts # LaTeX build artifacts (keep qwhpi.tex, references.bib, qwhpi.pdf) paper/*.aux paper/*.log paper/*.out paper/*.fls paper/*.fdb_latexmk paper/*.blg paper/*.bbl paper/*.toc # OS / editor / local .DS_Store .claude/ .env .env.* *.local.json