51 lines
893 B
Plaintext
51 lines
893 B
Plaintext
# Node
|
|
node_modules/
|
|
dist/
|
|
build/
|
|
.next/
|
|
.turbo/
|
|
*.tsbuildinfo
|
|
npm-debug.log*
|
|
pnpm-debug.log*
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.pyc
|
|
.venv/
|
|
.venv*/
|
|
venv/
|
|
.pytest_cache/
|
|
.ruff_cache/
|
|
*.egg-info/
|
|
|
|
# Env / secrets
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# Investigation scratch — temporary evidence tools and their rendered output.
|
|
# Per CLAUDE.md these are deleted once their finding lands in a test, fixture,
|
|
# ADR or the outlier catalog; they are never imported by production code.
|
|
ingestion/scratch/
|
|
|
|
# Ingestion large/derived artifacts (regeneratable — never commit)
|
|
ingestion/data/interim/*
|
|
!ingestion/data/interim/.gitkeep
|
|
ingestion/data/processed/*
|
|
!ingestion/data/processed/.gitkeep
|
|
|
|
# Terraform
|
|
**/.terraform/
|
|
*.tfstate
|
|
*.tfstate.*
|
|
*.tfvars
|
|
|
|
# OS / editor
|
|
.DS_Store
|
|
Thumbs.db
|
|
.vscode/
|
|
.idea/
|
|
|
|
# Claude Code personal/local settings (bypass permissions mode etc. — not shared)
|
|
.claude/settings.local.json
|