-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
67 lines (58 loc) · 1.79 KB
/
.gitignore
File metadata and controls
67 lines (58 loc) · 1.79 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
# ── OS ──────────────────────────────────────────────
.DS_Store
Thumbs.db
Desktop.ini
*.swp
*~
# ── IDEs / Editors ─────────────────────────────────
.idea/
*.iml
.project
.classpath
.settings/
# ── Environment / Secrets ──────────────────────────
.env
.env.local
.env.*.local
.envrc
# ── Python ─────────────────────────────────────────
__pycache__/
*.py[codz]
*$py.class
*.egg-info/
*.egg
dist/
build/
*.whl
.venv/
venv/
.pytest_cache/
.mypy_cache/
.ruff_cache/
# ── Node.js ────────────────────────────────────────
node_modules/
*.tsbuildinfo
# ── Model weights / large binaries ─────────────────
*.gguf
*.bin
*.onnx
*.safetensors
*.pt
*.pth
# ── Research outputs (regenerable) ─────────────────
output.md
# ── External repos (cloned separately) ─────────────
cactus/
deep-research-mcp-server/
# ── Bluera Knowledge ──────────────────────────────
# Config files (stores.config.json, config.json, skill-activation.json) can be committed
# Data directory (vector DB, cloned repos) and logs are not committed
.bluera/
!.bluera/
!.bluera/bluera-knowledge/
!.bluera/bluera-knowledge/stores.config.json
!.bluera/bluera-knowledge/config.json
!.bluera/bluera-knowledge/skill-activation.json
.bluera/bluera-knowledge/data/
.bluera/bluera-knowledge/logs/
papers/*.pdf