-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
56 lines (47 loc) · 1.66 KB
/
Copy path.gitignore
File metadata and controls
56 lines (47 loc) · 1.66 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
# =============================================================================
# Wiki Workspace — .gitignore
# =============================================================================
# Tracked: CLAUDE.md, LESSONS.md, ROADMAP.md, wiki/, scripts/, prompts/,
# .gitignore, .env.example, claude_desktop_config.json.example,
# .gitkeep placeholders inside otherwise-ignored directories
# Untracked: raw sources, briefs, .env, .claude/, OS cruft
# =============================================================================
# --- Raw sources (large, often copyrighted / scraped; live local only) -------
# Ignore contents but keep the directory + .gitkeep so it survives clone
research to be indexed/*
!research to be indexed/.gitkeep
raw-sources/*
!raw-sources/.gitkeep
# --- Outputs staged for distribution -----------------------------------------
briefs/*
!briefs/.gitkeep
# --- Claude Code per-project state -------------------------------------------
.claude/
# --- Claude Desktop actual config (user fills in keys; example is committed) -
claude_desktop_config.json
# --- Session-state cache (changes every session; ephemeral) ------------------
hot.md
# --- Environment variables (secrets; .env.example is the committed template) -
.env
# --- macOS / editor cruft ----------------------------------------------------
.DS_Store
*.swp
*.swo
*~
.idea/
.vscode/
.obsidian/
# --- Python ------------------------------------------------------------------
__pycache__/
*.py[cod]
*$py.class
*.egg-info/
.venv/
venv/
.pytest_cache/
# --- Temp scratch ------------------------------------------------------------
/tmp_*.txt
/tmp_*.md
*.tmp
.scratch/
.playwright-mcp/