Zion Boggan
repos/Oversight/.gitignore
zionboggan.com ↗
70 lines · text
History for this file →
1
# Rust
2
target/
3
**/*.rs.bk
4
Cargo.lock.bak
5
 
6
# Python
7
__pycache__/
8
*.py[cod]
9
*$py.class
10
*.egg-info/
11
.pytest_cache/
12
.mypy_cache/
13
.ruff_cache/
14
.coverage
15
htmlcov/
16
.tox/
17
build/
18
dist/
19
*.so
20
 
21
# Virtualenvs
22
.venv/
23
venv/
24
env/
25
 
26
# Editor / OS
27
.vscode/
28
.idea/
29
*.swp
30
.DS_Store
31
Thumbs.db
32
 
33
# Local sealed bundles (privacy: never commit)
34
*.sealed
35
*.bundle.local
36
 
37
# Local secrets / runtime
38
.env
39
.env.*
40
!.env.example
41
*.pem
42
*.key
43
secrets/
44
 
45
# Private operational META (never push to public repo)
46
docs/META/
47
 
48
# Logs / scratch
49
*.log
50
scratch/
51
tmp/
52
.tmp-tests/
53
SESSION_*.md
54
 
55
# --- Operational / handoff notes that must not land in public history ---
56
SESSION_*.md
57
SESSION_RESUME.md
58
HANDOFF_*.md
59
NOTES_*.md
60
*_HANDOFF.md
61
CODEX_*.md
62
CLAUDE_*.md
63
MAINTAINER_*.md
64
START_HERE.md
65
RUNBOOK.md
66
docs/RUNBOOK.md
67
docs/META/
68
private/
69
secrets/
70
*.local.md