-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
178 lines (147 loc) · 2.87 KB
/
.gitignore
File metadata and controls
178 lines (147 loc) · 2.87 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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
# Python
__pycache__/
*.py[cod]
*.pyo
*.pyd
*.so
*.egg-info/
.eggs/
*.log
# Backup files
*.bak
*.backup
*.orig
*~
# Environments
.env
.venv
venv/
ENV/
# Aegis Framework (task management context - should not be committed)
.context/
# Development files (summaries, test files, cache, logs)
.development/
# Jupyter
.ipynb_checkpoints
# Data
*.vcf
*.bcf
*.gz
*.csi
*.db
*.sqlite
*.h5
*.csv
*.tsv
*.jsonl
*.lancedb
# Database directories
/kuzu_db/
/lancedb/
**/kuzu_db/
**/lancedb/
lancedb_test/
**/lancedb_test/
*.lance/
**/*.lance/
# Containers
*.img
*.dockerfile
Dockerfile*
.dockerignore
# Test & Coverage
.coverage
htmlcov/
coverage.xml
.tox/
.cache/
pytest_cache/
# CLI Documentation Validation artifacts
.validation-cache/
.cli-validation.yml
.cli-validation.yaml
cli-validation.yml
cli-validation.yaml
# Secrets
*.key
*.pem
*.env
secrets.*
# OS
.DS_Store
Thumbs.db
# IDEs
.vscode/
.idea/
*.swp
# Project/Editor
.cursor/
# Temporary test data and cache
sample_data/
golden/
.hypothesis/
# Ignore test agent script and credentials
test_agent.py
test_credentials.json
# Sphinx build artifacts
docs/build/
docs/build/**
# If you want to version canonical test VCFs in sample_test_data/
!sample_test_data/*.vcf.gz
kuzu_bug_report.md
# Large data files in sample_test_data/ that should not be committed
sample_test_data/chr22.1kg.phase3.v5a.vcf.gz
sample_test_data/chr22.1kg.phase3.v5a.vcf.gz.csi
sample_test_data/chr22.1kg.phase3.v5a.vcf.gz.tbi
sample_test_data/chr22.1kg.phase3.v5a.testready.vcf.gz
sample_test_data/chr22.1kg.phase3.v5a.testready.vcf.gz.csi
sample_test_data/chr22.1kg.phase3.v5a.testready.vcf.gz.tbi
sample_test_data/22.fa
sample_test_data/22.fa.fai
# Demo and Implementation Planning Files (should not be tracked)
demo/
demo_script.md
DEMO_READINESS_CHECKLIST.md
APACHE_IGGY_IMPLEMENTATION_PLAN.md
# Temporary test and validation files
test_phase1_memory_optimization.py
performance_validation.py
test_*.py
*_test.py
# Session and development summary files
*_SESSION_SUMMARY.md
*_FIXES_SUMMARY.md
*_SCHEMA_FIX_SUMMARY.md
LOAD_TESTING_SESSION_SUMMARY.md
PATH_FIXES_SUMMARY.md
KUZU_SCHEMA_FIX_SUMMARY.md
SESSION_SUMMARY_*.md
*SESSION_SUMMARY*.md
SESSION_SUMMARY_2025-*.md
# Audit and internal analysis reports (should not be public)
*_AUDIT_REPORT_*.md
SAMPLE_DATA_AUDIT_REPORT_*.md
CLI_DOCSTRING_AUDIT_REPORT_*.md
# Temporary performance reports (keep important milestone reports)
performance_reports/temp_*
performance_reports/*_temp*
performance_reports/test_*
# Security reports (may contain sensitive info)
security-reports/
# Large cache files
.embedding_cache.json
# Memory profiling artifacts
memory_profiles/
*.memray
# Color palette files
vibrant-palette.txt
# Documentation build artifacts (ensure these are never committed)
docs_site/
docs/docs_src/_build/
docs/_build/
site/
.mkdocs_cache/
# MkDocs and Sphinx build artifacts
*.html
docs/docs_src/_static/
docs/docs_src/api/api/