-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
129 lines (109 loc) · 2.01 KB
/
Copy path.gitignore
File metadata and controls
129 lines (109 loc) · 2.01 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
# Dependencies
node_modules/
# Next.js build output
.next/
# Python
__pycache__/
*.py[cod]
*$py.class
*.egg-info/
.eggs/
dist/
venv/
.venv/
# IDE
.vscode/
.idea/
*.swp
*.swo
# OS
.DS_Store
Thumbs.db
# Environment
.env
.env.local
.env.*.local
# Logs
*.log
logs/
# Database
*.db
*.sqlite3
# ── Storage Layout v3 — User data and generated assets ──
# Block everything in data directories EXCEPT .gitkeep (for structure visibility)
00_Inbox/**/*
00_Supplementary/**/*
01_Sources/**/*
02_Parse/**/*
03_Assets/**/*
04_Corpus/**/*
05_Knowledge/**/*
06_Index/**/*
07_Agents/**/*
08_Projects/**/*
09_Exports/**/*
10_System/**/*
reports/**/*
# BUT allow .gitkeep files so directory structure is visible on GitHub
!00_Inbox/**/.gitkeep
!00_Supplementary/**/.gitkeep
!01_Sources/**/.gitkeep
!02_Parse/**/.gitkeep
!03_Assets/**/.gitkeep
!04_Corpus/**/.gitkeep
!05_Knowledge/**/.gitkeep
!06_Index/**/.gitkeep
!07_Agents/**/.gitkeep
!08_Projects/**/.gitkeep
!09_Exports/**/.gitkeep
!10_System/**/.gitkeep
!reports/**/.gitkeep
# ── Legacy layout (archived, pre-v3) ──
01_PDF/
02_Metadata/
03_Evidence/
03_Summary/
04_VectorDB/
05_Index/
06_PDF_DataAssets/
# ── LLM config (contains API key — NEVER commit) ──
Config/llm_config.yaml
Config/*.yaml
!Config/storage_layout.yaml
!Config/*.example.yaml
# ── Secrets & credentials ──
*.key
*.pem
*.p12
*.pfx
# ── Large model / data files ──
*.lancedb/**
*.parquet
*.faiss
*.pkl
*.pickle
*.pt
*.safetensors
*.onnx
*.bin # model weights
!examples/**/*.bin
# ── Release artifacts ──
10_System/release/
10_System/logs/**
10_System/backups/**
10_System/validation/**
10_System/legacy_archive/**
!10_System/**/.gitkeep
# ── Generated documents ──
~$*.docx
# ── Workflow runtime state ──
07_Workflows/reports/
07_Workflows/workflow_state.json
# ── Build artifacts ──
*.tsbuildinfo
# ── External source dependencies (cloned repos) ──
external/
# ── Session planning files (local only) ──
task_plan.md
findings.md
progress.md