-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
67 lines (54 loc) · 848 Bytes
/
.gitignore
File metadata and controls
67 lines (54 loc) · 848 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# Runtime state (dev.sh pids + logs)
.run/
# Environment and secrets
.env
.env.tokens
infra/.env
# Bytecode and cache
__pycache__/
*.pyc
# Virtual environments
.venv/
venv/
# Test coverage
htmlcov/
.coverage
.pytest_cache/
# MCP plugin workspace
.serena/
# Lain MCP (self-contained binary + graph + models)
.lain/
# Package lock files
uv.lock
# Local fallback storage (MinIO overflow)
.local_storage/
# Infrastructure data
infra/mongodb/data
infra/mongodb/configdb
infra/mongodb/init
infra/neo4j/data
infra/neo4j/logs
infra/neo4j/import
infra/neo4j/plugins
infra/qdrant/storage
infra/minio/data
infra/opensearch/data
infra/postgres/data
# Node / Next.js
node_modules/
.next/
out/
*.tsbuildinfo
.env.local
.env.development.local
.env.test.local
.env.production.local
# IDE
.vscode/
*.swp
*.swo
*~
.agent/
# OS files
.DS_Store
Thumbs.db