-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
198 lines (179 loc) · 5.74 KB
/
Copy path.gitignore
File metadata and controls
198 lines (179 loc) · 5.74 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
# =============================================================================
# CIPHER - GITIGNORE
# =============================================================================
# =============================================================================
# DEPENDENCIES
# =============================================================================
node_modules/
.pnpm-store/
# package-lock.json is committed for reproducible builds (security/audit
# requirement — see Phase 4 roadmap). yarn.lock and pnpm-lock.yaml stay
# ignored because the project standardizes on npm; checking in a second
# lockfile format would let two install paths drift.
yarn.lock
pnpm-lock.yaml
# =============================================================================
# BUILD OUTPUTS
# =============================================================================
dist/
build/
release/
# Staged by scripts/bundle-eidolon-runtime.mjs before electron-builder (not source)
assets/eidolon-runtime/
out/
*.tsbuildinfo
.vite/
.turbo/
# =============================================================================
# ENVIRONMENT & SECRETS (CRITICAL)
# =============================================================================
.env
.env.*
!.env.example
!.env.production.template
# Privacy-l1: the frontend's .env.production carries only the public Fly
# bridge URL (no secrets). Committing it keeps the Electron build
# reproducible — anyone running `npm run build:win` from a fresh clone
# gets an installer pointing at the same prod bridge.
!apps/frontend/.env.production
# =============================================================================
# E2EE-V2 SETUP REPORTS (AUTO-GENERATED)
# =============================================================================
E2EE_V2_SETUP_REPORT.md
*.pem
*.key
*.cert
*.p12
*.pfx
.db.key
secrets/
credentials/
# =============================================================================
# DATABASE & DATA
# =============================================================================
*.db
*.db-shm
*.db-wal
*.db.enc
*.sqlite
*.sqlite3
apps/bridge/data/
apps/bridge/backups/
data/
!apps/bridge/data/.gitkeep
# =============================================================================
# INTERNAL DOCUMENTATION (NOT PUBLISHED)
# =============================================================================
# Documentation/ is treated as private-by-default. The exceptions below
# carve out the public-quality docs we want tracked. Git refuses to
# re-include files whose parent directory is excluded, so we ignore the
# *contents* of Documentation/ rather than the directory itself.
Documentation/*
!Documentation/internal/
Documentation/internal/*
!Documentation/internal/MESSAGE_WORKFLOW.md
ECOSYSTEM_GATING.md
FORUM_REPLY_TIMELOCK.md
# =============================================================================
# LOGS
# =============================================================================
*.log
logs/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
.crush/
apps/*/output.log
apps/*/server.*.log
# =============================================================================
# OPERATING SYSTEM
# =============================================================================
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
Desktop.ini
# =============================================================================
# IDE & EDITORS
# =============================================================================
.vscode/
.idea/
*.iml
*.sublime-project
*.sublime-workspace
.project
.classpath
.settings/
*.swp
*.swo
*~
.vim/
# =============================================================================
# TEMPORARY & BACKUP FILES
# =============================================================================
*.tmp
*.temp
*.bak
*.backup
*.old
*.orig
temp_*
.cache/
.temp/
# =============================================================================
# TEST & COVERAGE
# =============================================================================
coverage/
.nyc_output/
*.lcov
.coverage
htmlcov/
# =============================================================================
# DEBUG & DEVELOPMENT FILES
# =============================================================================
*_SUMMARY.md
*_COMPLETE.md
DEBUG_*.md
SESSION_*.md
*.debug
.crush/
# =============================================================================
# UPLOADS & USER CONTENT
# =============================================================================
uploads/
apps/*/public/avatars/*.blend
apps/*/public/avatars/*.glb
!apps/*/public/avatars/.gitkeep
# =============================================================================
# ELECTRON & NATIVE
# =============================================================================
*.node
.electron/
assets/eidolon-installer/*
!assets/eidolon-installer/.gitkeep
# =============================================================================
# MISC
# =============================================================================
*.example.ts
*.example.js
codebuff.json
.factory/
scripts/
# =============================================================================
# ARCHIVE (Development logs - not for production)
# =============================================================================
.archive/
# Release notes drafts — kept local, never published via git
docs/UPDATE_NOTE_*.md
# =============================================================================
# DESIGN NOTES — kept local, not yet published
# =============================================================================
# Forward-looking design / strategy docs we want to keep on disk but not
# expose on the public repo until the corresponding feature ships and
# the positioning is finalized.
META_BURN_HANDOVER.md
META_BURN_VALUE.md