-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
52 lines (43 loc) · 715 Bytes
/
.gitignore
File metadata and controls
52 lines (43 loc) · 715 Bytes
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
# Python virtual environments
.venv/
venv/
env/
.env/
# Python bytecode
__pycache__/
*.py[cod]
*$py.class
*.so
# Distribution / packaging
dist/
build/
*.egg-info/
*.egg
# Environment files
.env
.env.local
.env.*.local
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
# OS files
.DS_Store
Thumbs.db
# Test artifacts (generated during testing)
tests/**/output/
tests/**/*.db
tests/**/faiss_index/
tests/**/chroma_db/
tests/**/docs/*.pdf
tests/**/docs/*.txt
# Local plugin settings (user-specific)
# .claude/settings.local.json # Uncomment if you want to ignore local settings
# Local test scenarios (scratch/exploratory)
tests/
# Testing system artifacts
testing/.metrics.db
testing/reports/*.md
testing/reports/*.html