-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
146 lines (126 loc) · 3.36 KB
/
Copy path.gitignore
File metadata and controls
146 lines (126 loc) · 3.36 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
# ==============================================================================
# Environment & Secrets
# ==============================================================================
.env
.env.*
!.env.example
# Sibling repos cloned locally for dev (e.g. recon-tool); not part of this repo.
external/
# ==============================================================================
# Python
# ==============================================================================
__pycache__/
*.py[cod]
*$py.class
*.so
# Virtual environments
venv/
env/
ENV/
.venv/
# Distribution / packaging
build/
dist/
*.egg-info/
*.egg
.eggs/
# Testing
.pytest_cache/
.coverage
.coverage.*
coverage.json
coverage.xml
htmlcov/
.tox/
.nox/
.hypothesis/
pytest_debug.log
# Type checking
.mypy_cache/
.pytype/
.pyre/
# ==============================================================================
# Deepr Runtime Data
# ==============================================================================
# All runtime data (reports, queue, experts, traces, logs, etc.)
/data/
# External tool runtime telemetry generated during local first-party integration work.
/library/.distill/
# SQLite databases (anywhere in the repo)
*.db
*.db-journal
*.db-shm
*.db-wal
*.sqlite3
# ==============================================================================
# Local/Development Directories
# ==============================================================================
# Archive, backups, and personal notes
archive/
backups/
DEPRECATED/
/docs/archive/
/docs/.agent/
/docs/ideas/
/docs/reference/
/reports/
# Ignore generated test data, but keep committed versioned evaluation corpora.
# Calibration reports follow ADR 0004; epistemic simulations use frozen synthetic cases.
/tests/data/*
!/tests/data/calibration/
!/tests/data/calibration-hard/
!/tests/data/epistemic_simulation/
!/tests/data/epistemic_simulation/acceptance-v1.json
# Log files
logs/
*.log
# Temporary files
*.tmp
*.bak
last_response.json
CODE_QUALITY_REVIEW.md
nul
# Personal notes / scratch
scripts/expert_deepr_discussion.txt
# ==============================================================================
# Frontend
# ==============================================================================
src/deepr/web/frontend/node_modules/
src/deepr/web/frontend/dist/
src/deepr/web/frontend/.vite/
src/deepr/web/frontend/screenshots/
src/deepr/web/frontend/screenshot-qa.mjs
src/deepr/web/frontend/playwright-report/
# ==============================================================================
# IDEs and Editors
# ==============================================================================
.vscode/
.idea/
*.swp
*.swo
*~
# ==============================================================================
# Operating System
# ==============================================================================
.DS_Store
Thumbs.db
Desktop.ini
# ==============================================================================
# Tools
# ==============================================================================
.claude/
.agent/
.deepr/
.kiro/
.ruff_cache/
# MCP host wiring is machine-specific: `deepr mcp install-host` writes absolute
# interpreter and DEEPR_DATA_DIR paths for this operator only.
.mcp.json
# Generated evaluation run artifacts. The versioned rubrics and reports beside
# them stay committed.
eval/*/artifacts/
# Ngrok binaries
ngrok.exe
ngrok
bin/ngrok.exe
_ul