-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
253 lines (231 loc) Β· 3.78 KB
/
Copy path.gitignore
File metadata and controls
253 lines (231 loc) Β· 3.78 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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
# ========================================
# RAG System - Git Ignore Configuration
# ========================================
# π SECURITY - API Keys and Secrets
# CRITICAL: Never commit these files!
.env
.env.local
.env.development
.env.test
.env.production
.env.staging
*.key
*.pem
*.p12
*.pfx
config/secrets.json
secrets/
# π EXPERIMENT RESULTS AND LOGS
# These are generated outputs that change frequently
regression_test_results/
evaluation_results.json
evaluation_report.md
EVALUATION_COMPARISON.md
RATE_LIMITING_NOTES.md
*.log
*.out
logs/
results/
experiment_logs/
performance_metrics/
# πΎ DATABASE FILES
# ChromaDB and other database files (large and regeneratable)
*.sqlite3
*.db
chroma.sqlite3
data/chroma_db/
embedding_experiment_db/
generation_experiment_db/
retrieval_experiment_db/
system_optimization_db/
test_chroma_db_*/
*.chroma/
vector_db/
database/
db_backups/
chroma_db/
# ChromaDB specific files and directories
**/chroma.sqlite3
**/*chroma_db*/
*.bin
*.index
*.hnsw
# π PYTHON SPECIFIC
# Standard Python gitignore patterns
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
pip-wheel-metadata/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST
# π§ͺ TESTING AND COVERAGE
# Test outputs and coverage reports
.pytest_cache/
.coverage
htmlcov/
.tox/
.nox/
.coverage.*
coverage.xml
*.cover
*.py,cover
.hypothesis/
test_results/
test_outputs/
pytest_report.html
# π JUPYTER NOTEBOOKS
# Notebook checkpoints and outputs
.ipynb_checkpoints/
*/.ipynb_checkpoints/*
*.ipynb_checkpoints
Untitled*.ipynb
# π§ DEVELOPMENT TOOLS
# IDE and editor files
.vscode/settings.json
.vscode/launch.json
.vscode/.ropeproject
.idea/
*.swp
*.swo
*~
.DS_Store
Thumbs.db
# π³ CONTAINERS AND DEPLOYMENT
# Docker and deployment artifacts
.dockerignore
Dockerfile.*
docker-compose.override.yml
.docker/
kubernetes/
# π¦ DEPENDENCIES AND VIRTUAL ENVIRONMENTS
# Virtual environments (if locally created)
venv/
env/
ENV/
env.bak/
venv.bak/
.venv/
.conda/
conda-meta/
# π DEPLOYMENT AND PRODUCTION
# Production configuration and builds
.vercel/
.netlify/
.aws/
terraform.tfstate*
.terraform/
# π MACHINE LEARNING SPECIFIC
# Model files, datasets, and ML artifacts
models/
*.model
*.pkl
*.pickle
*.joblib
*.pt
*.pth
*.onnx
*.h5
*.hdf5
checkpoints/
wandb/
mlruns/
.mlflow/
data/raw/
data/processed/
data/interim/
*.parquet
*.feather
# π§Ή TEMPORARY FILES
# System and application temporary files
*.tmp
*.temp
*.cache
.cache/
.temp/
.tmp/
debug_*.py
temp_*.py
scratch_*.py
# Temporary test files (but not in tests/ directory)
test_*.py
!tests/test_*.py
# Temporary demo files (but not legitimate demos in project directories)
demo_*.py
!regression_testing/demo_*.py
# π DOCUMENTATION BUILDS
# Generated documentation
docs/_build/
docs/build/
site/
.mkdocs.yml.backup
# π WEB ASSETS
# Frontend build artifacts (if any)
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.npm
.yarn-integrity
static/build/
static/dist/
# βοΈ CONFIGURATION OVERRIDES
# Local configuration overrides
config/local.py
config/development.json
config/production.json
local_settings.py
instance/
# π± MOBILE AND PLATFORM SPECIFIC
# Platform specific files
ehthumbs.db
ehthumbs_vista.db
Desktop.ini
.DS_Store?
._*
.Spotlight-V100
.Trashes
Icon?
# π BACKUP FILES
# Backup and recovery files
*.bak
*.backup
*.old
*.orig
*~
.#*
#*#
# =======================================
# PROJECT SPECIFIC EXCLUSIONS
# =======================================
# RAG Pipeline Specific
chunking_results/
embedding_results/
generation_results/
retrieval_results/
optimization_results/
# Analysis and Debug Files
analyze_*.py
debug_*.py
cleanup_*.py
limited_evaluation.py
dependency_audit.py
# Experiment Database Backups
experiment_backups/
vector_backups/