-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
54 lines (45 loc) · 1.05 KB
/
Copy path.gitignore
File metadata and controls
54 lines (45 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# Secrets — Article IV: never commit credentials.
.env
.env.*
!.env.example
# Python
__pycache__/
*.py[cod]
*$py.class
.Python
.venv/
venv/
*.egg-info/
dist/
build/
# Tooling caches
.pytest_cache/
.ruff_cache/
.mypy_cache/
# Database state — defense in depth (the named volume should never land
# on disk in the repo; this catches a bind-mount mistake).
pgdata/
# OS / editor
.DS_Store
Thumbs.db
.vscode/
.idea/
desktop.ini
$RECYCLE.BIN/
# Local sample dataset — bulky and unreferenced by code. The curated/
# subfolder is tracked (a few small PDFs for reviewers); everything else
# in this dir stays local. The `*` (not `**`) is deliberate so the
# negation re-includes the subdirectory.
data/sample-pdfs/*
!data/sample-pdfs/curated/
# Generated sample PDF (created by `make sample-pdf` on a fresh clone).
data/sample.pdf
# Coverage & type-checker daemon artifacts.
htmlcov/
.coverage
coverage.xml
.dmypy.json
# Claude Code local-only settings (project-shared settings.json stays tracked).
.claude/settings.local.json
# Jupyter checkpoints.
.ipynb_checkpoints/