63 lines
1.2 KiB
Plaintext
63 lines
1.2 KiB
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
|
|
|
|
# Agent session scratch — background-server logs and UI screenshots written to
|
|
# the repo root and to apps/ai-service/ during development sessions. Never
|
|
# imported by production code; safe to delete at any time.
|
|
.codex-*.log
|
|
.codex-*.png
|
|
.codex-*.stdout.log
|
|
.codex-*.stderr.log
|
|
.codex-memory.local.md
|
|
.codex/
|
|
tmp/
|
|
output/
|
|
|
|
# OS / editor
|
|
.DS_Store
|
|
Thumbs.db
|
|
.vscode/
|
|
.idea/
|
|
|
|
# Claude Code personal/local settings (bypass permissions mode etc. — not shared)
|
|
.claude/settings.local.json
|