-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
50 lines (43 loc) · 2.04 KB
/
.gitignore
File metadata and controls
50 lines (43 loc) · 2.04 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
# ── Secrets & credentials ─────────────────────────────────────────────────────
.env
.env.*
!.env.example
decrypted.md
wallets.enc
*.enc
# ── Python ────────────────────────────────────────────────────────────────────
__pycache__/
*.py[cod]
*.pyo
*.pyd
.Python
*.egg-info/
dist/
build/
.eggs/
*.egg
.pytest_cache/
.mypy_cache/
.ruff_cache/
# ── Runtime / generated state (not source) ────────────────────────────────────
fs/memories/ # Qdrant vector store + mem0 SQLite (large, machine-local)
fs/sessions/ # Ephemeral session JSON (regenerated on each run)
fs/gnosis_repo_index.json # Auto-generated repo scan index
fs/docs_index.json # Auto-generated docs ingest index
# Keep smolting logs (seed data for GnosisAccelerator)
!fs/logs/
# ── Node / Bun ────────────────────────────────────────────────────────────────
node_modules/
.npm/
# ── OS ────────────────────────────────────────────────────────────────────────
.DS_Store
Thumbs.db
desktop.ini
# ── IDE ───────────────────────────────────────────────────────────────────────
.vscode/
.idea/
*.swp
*.swo
# ── Misc ──────────────────────────────────────────────────────────────────────
*.tmp
*.bak