-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
111 lines (91 loc) · 2.51 KB
/
.gitignore
File metadata and controls
111 lines (91 loc) · 2.51 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
# Virtual Environment
leetcode/
venv/
.venv/
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
# IDE
.idea/
*.swp
*.swo
*~
.cursorrules
.claude
AGENTS.md
# OS
.DS_Store
Thumbs.db
nul
# Debug
*.log
tools/mindmaps/outputs/debug/run_*_regen_*
# Generated failed test cases (from --save-failed)
*_failed_*.in
# MkDocs build output
site/
# MkDocs privacy plugin cache
.cache/
# MkDocs document-dates plugin auto-generated files (except avatar)
docs/assets/document_dates/*
!docs/assets/document_dates/avatar/
# Generated mindmaps (regenerated by CI/CD)
# ============================================
# Rule-based mindmaps are generated from ontology data
# Only AI-generated mindmaps are tracked (require API key, have cost)
# Ignore generated HTML mindmaps
docs/pages/**
!docs/pages/mindmaps/
!docs/pages/mindmaps/neetcode-ontology-ai-*.html
!docs/pages/mindmaps/neetcode-ontology-agent-evolved-*.html
# Ignore generated Markdown mindmaps
docs/mindmaps/*.md
!docs/mindmaps/index.md
!docs/mindmaps/README.md
!docs/mindmaps/neetcode-ontology-ai-*.md
!docs/mindmaps/neetcode-ontology-agent-evolved-*.md
# =============================================================================
# AI Markmap Agent (tools/mindmaps/ai-markmap-agent/)
# =============================================================================
# AI Markmap Agent - Output files
tools/mindmaps/ai-markmap-agent/outputs/intermediate/*.md
tools/mindmaps/ai-markmap-agent/outputs/intermediate/*.html
tools/mindmaps/ai-markmap-agent/outputs/final/*.md
tools/mindmaps/ai-markmap-agent/outputs/final/*.html
tools/mindmaps/ai-markmap-agent/outputs/debug/
# AI Markmap Agent - Data & persistence
tools/mindmaps/ai-markmap-agent/data/chromadb/
tools/mindmaps/ai-markmap-agent/data/*.json
tools/mindmaps/ai-markmap-agent/data/*.yaml
# AI Markmap Agent - Logs
tools/mindmaps/ai-markmap-agent/logs/*.log
# AI Markmap Agent - Environment (if not using root .env)
tools/mindmaps/ai-markmap-agent/.env
tools/mindmaps/ai-markmap-agent/.env.local
# =============================================================================
# .neetcode Runtime Data
# =============================================================================
# Cache is always ignored (ephemeral, can be rebuilt)
.neetcode/leetcode_datasource/cache/
# Store and meta are optionally committed for sharing
# Uncomment to ignore:
# .neetcode/leetcode_datasource/store/
# .neetcode/leetcode_datasource/meta/