forked from NetMindAI-Open/NarraNexus
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.gitignore
More file actions
102 lines (84 loc) · 4.03 KB
/
.gitignore
File metadata and controls
102 lines (84 loc) · 4.03 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
# =============================================================================
# NarraNexus .gitignore
# =============================================================================
# Directory classification:
# Core: backend/, src/, frontend/, tauri/, deploy/, scripts/
# Runtime: logs/, sessions/
# Reference: reference/
# Generated: __pycache__/, node_modules/, dist/, build/
# =============================================================================
# ── Runtime data (never committed) ──────────────────────────────────────────
/logs/
/logs_*/
/sessions/
# ── Reference & internal docs ─────────────────────────────────────────────
/reference/
AGENT.md
/deploy/synapse/
# ── Python bytecode & cache ────────────────────────────────────────────────
__pycache__/
*.py[codz]
*$py.class
*.so
*.egg-info/
*.egg
# ── Python packaging & build ───────────────────────────────────────────────
build/
dist/
develop-eggs/
.eggs/
sdist/
wheels/
# ── Python virtual environments ────────────────────────────────────────────
.env
.envrc
.venv/
env/
venv/
# ── Test & coverage ───────────────────────────────────────────────────────
htmlcov/
.coverage
.coverage.*
.pytest_cache/
.hypothesis/
# ── Linter & type checker cache ───────────────────────────────────────────
.mypy_cache/
.ruff_cache/
.pytype/
# ── Node / Frontend ───────────────────────────────────────────────────────
node_modules/
.next/
*.tsbuildinfo
.vite/
# ── Logs & temp files ─────────────────────────────────────────────────────
*.log
*.pid
# ── OS files ──────────────────────────────────────────────────────────────
.DS_Store
Thumbs.db
# ── Editor / IDE ──────────────────────────────────────────────────────────
**/.vscode/
**/.idea/
# ── AI tool state ─────────────────────────────────────────────────────────
/.claude/
/.codex/
/.codex
/.gemini/
/.cursor/
/.evermemos/
# ── Tauri build artifacts ────────────────────────────────────────────────
tauri/src-tauri/target/
tauri/src-tauri/resources/python/
tauri/src-tauri/resources/venv/
tauri/src-tauri/resources/project/
tauri/src-tauri/gen/
# ── Cloud deploy secrets ─────────────────────────────────────────────────
deploy/.env.cloud
# ── Runtime-generated scripts ────────────────────────────────────────────
scripts/.control.sh
# ── Related projects (separate repos) ───────────────────────────────────
/related_project/
# MindFlow runtime state (not tracked)
.mindflow/state/
# Local production planning notes
/production_plan/