forked from lyonzin/knowledge-rag
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
66 lines (55 loc) · 1.15 KB
/
Copy path.gitignore
File metadata and controls
66 lines (55 loc) · 1.15 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
# Runtime
venv/
__pycache__/
*.pyc
data/
# User config (personal settings — use presets/ as starting point)
config.yaml
# Personal documents (NEVER commit — user-populated content)
documents/aar/
documents/security/
documents/logscale/
documents/general/
documents/ctf/
documents/development/
documents/documents/
# Sensitive file formats (extra safety layer)
documents/**/*.pdf
documents/**/*.docx
documents/**/*.xlsx
documents/**/*.pptx
documents/**/*.csv
# Keep example docs
!documents/examples/
!documents/examples/**
# FastEmbed model cache
.cache/
models_cache/
*.onnx
# Local one-off scripts (not part of distribution)
# Note: tracked utility scripts under scripts/ (e.g. check_version_sync.py) are
# committed; this rule only catches ad-hoc local files outside that directory.
setup-notebook.ps1
demo-real.yml
documents/.sync-log.txt
documents/README-CATEGORIES.md
# Temp/junk
*.b64
*.tar.gz
*.bak
# Type-checker cache (per-Python-version, auto-generated)
.mypy_cache/
# Hypothesis property-based testing cache (auto-generated)
.hypothesis/
# OS files
.DS_Store
Thumbs.db
desktop.ini
# IDE
.vscode/
.idea/
*.swp
*.swo
dist/
.ruff_cache/
.pytest_cache/