-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
60 lines (48 loc) · 1.04 KB
/
.gitignore
File metadata and controls
60 lines (48 loc) · 1.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
51
52
53
54
55
56
57
58
59
60
# GraphStack — .gitignore
# OS
.DS_Store
Thumbs.db
*.swp
*.swo
# Editor
.vscode/
.idea/
*.code-workspace
# Python (graphify)
__pycache__/
*.pyc
*.pyo
.venv/
venv/
*.egg-info/
# Node
node_modules/
.npm/
# Logs
*.log
npm-debug.log*
# Secrets — never commit these
.env
.env.*
*.pem
*.key
# ── GraphStack-specific ───────────────────────────────────
# graphify-out: COMMIT this in your projects (it's the knowledge graph)
# Local AST cache is machine-specific and must not be versioned:
graphify-out/cache/
# But exclude the visual HTML in CI if it's large:
# graphify-out/graph.html
# handoff files: COMMIT these (they are the shared state)
# handoff/
# Do NOT ignore:
# - handoff/board/
# - handoff/BRIEF.md
# - handoff/REVIEW.md
# - handoff/STATE.md
# - handoff/BOOTSTRAP.md
# - graphify-out/GRAPH_REPORT.md
# - graphify-out/graph.json
# Test artifacts (board smoke test leftovers)
handoff/board/todo/smoke-*.json
handoff/board/doing/smoke-*.json
handoff/board/done/smoke-*.json