-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
104 lines (89 loc) · 1.25 KB
/
.gitignore
File metadata and controls
104 lines (89 loc) · 1.25 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
# Go
*.exe
*.exe~
*.dll
*.so
*.dylib
*.test
*.out
# Go coverage
coverage.out
coverage.html
# Python (for scripts/)
__pycache__/
*.py[cod]
*$py.class
.pytest_cache/
.coverage
.coverage.*
coverage.json
coverage.xml
htmlcov/
*.egg-info/
.mypy_cache/
.ruff_cache/
# Virtual environments
venv/
.venv/
env/
# IDEs
.vscode/
.idea/
*.swp
*.swo
*~
# Temporary files
*.tmp
*.bak
*.backup
*.orig
# Environment
.env
.env.local
.env.*.local
# OS
.DS_Store
Thumbs.db
# SDP specific
artifacts/
archive/
.oneshot
.sdp/audit.log
.sdp/memory.db
.sdp/checkpoints/
!.sdp/evidence/
!.sdp/checkpoints/
.sdp/log/
sdp-plugin/.sdp/log/
**/events.jsonl
# Build output
bin/
dist/
/sdp
sdp-plugin/bin/
# Go binaries (always clean old builds)
# Rule: Never commit compiled binaries to repo
# Run 'go build' locally, binaries are gitignored
/sdp
/sdp-test
sdp-plugin/sdp
sdp-plugin/sdp-test
sdp-plugin/cmd/sdp/sdp
# Temporary status files
*_STATUS.md
*_PROGRESS.md
# Beads daemon and temp files
*.startlock
daemon-error
sdp-plugin/cmd/sdp/.beads/
sdp-plugin/.beads/*.db
sdp-plugin/.beads/*.db-shm
sdp-plugin/.beads/*.db-wal
# SDP session files in subdirs
sdp-plugin/**/.sdp/
# Demo project (created by vhs demo.tape)
demo-beads-viz/
demo-project/
# Dolt database files (added by bd init)
.dolt/
*.db