-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.gitignore
More file actions
86 lines (76 loc) · 1.88 KB
/
Copy path.gitignore
File metadata and controls
86 lines (76 loc) · 1.88 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
# --- Python ---
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
venv/
.venv/
env/
*.egg-info/
.pytest_cache/
.ruff_cache/
.mypy_cache/
# --- Environment ---
.env
.env.local
.env.*.local
# --- IDE / OS ---
.vscode/
.idea/
*.swp
*.swo
.DS_Store
Thumbs.db
# --- Logs / runtime ---
*.log
# --- Claude Code (per-project state) ---
.claude/
CLAUDE.md
SESSION_LOG.md
# --- Local chat-export uploads sitting at project root ---
# (the import endpoints work directly with the file in place — no need to commit)
/*.zip
/conversations.json
# ===========================================================
# Vault
#
# Whitelist approach: ignore EVERYTHING under vault/ by default,
# then explicitly allow the folder structure (.gitkeep files) and
# the Templates/ contents. This guarantees that real notes and
# attachments never leak into git.
# ===========================================================
vault/**
# Allow the structural folders + their .gitkeep markers
!vault/00_Inbox/
!vault/00_Inbox/.gitkeep
!vault/01_Projects/
!vault/01_Projects/.gitkeep
!vault/02_Areas/
!vault/02_Areas/.gitkeep
!vault/03_Resources/
!vault/03_Resources/.gitkeep
!vault/04_Archive/
!vault/04_Archive/.gitkeep
!vault/05_Daily/
!vault/05_Daily/.gitkeep
!vault/06_Chats/
!vault/06_Chats/ChatGPT/
!vault/06_Chats/ChatGPT/.gitkeep
!vault/06_Chats/Claude/
!vault/06_Chats/Claude/.gitkeep
!vault/06_Chats/Gemini/
!vault/06_Chats/Gemini/.gitkeep
!vault/07_References/
!vault/07_References/.gitkeep
!vault/08_Attachments/
!vault/08_Attachments/.gitkeep
!vault/Tags/
!vault/Tags/.gitkeep
# Templates: track the daily-note template (the rest of the
# folder is also tracked so users can add their own).
!vault/Templates/
!vault/Templates/**
# vault/_meta/ — ChromaDB, SQLite, settings overrides (ignored)
# vault/.obsidian/ — per-machine Obsidian config (ignored)
# Everything else under vault/ — user notes / attachments (ignored)