-
Notifications
You must be signed in to change notification settings - Fork 73
Expand file tree
/
Copy path.gitignore
More file actions
322 lines (287 loc) ยท 7.13 KB
/
.gitignore
File metadata and controls
322 lines (287 loc) ยท 7.13 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
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
# ๐งช SortVision's Secret Recipe - Things We Don't Share
# ===============================================================
# This .gitignore is like our secret cookbook - it keeps the
# special ingredients (sensitive files) away from prying eyes!
#
# Created with โค๏ธ by alienX for SortVision
# Because some things are meant to stay in the kitchen! ๐จโ๐ณ
# ===============================================================
# ๐ณ The Docker Kitchen (Docker-specific)
# --------------------------------------
# Keep Docker's workspace clean!
.docker/
docker-compose.override.yml
docker-compose.*.yml
!docker-compose.yml
*.env
.dockerignore
docker-volumes/
.docker-compose/
docker-data/
# ๐ฆ The Secret Pantry (Dependencies)
# -----------------------------------
# These are our ingredients - fresh every time!
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
.pnpm-store/
# ๐๏ธ The Kitchen Workshop (Build Artifacts)
# ------------------------------------------
# Don't share the messy workspace, just the final dish!
dist/
build/
*.tsbuildinfo
.turbo/
# ๐ The Chef's Secret Vault (Environment & Config)
# -------------------------------------------------
# These are our secret spices - keep them locked away!
.env
.env.local
.env.development.local
.env.test.local
.env.production.local
.env.staging
# Personal chef notes (local config overrides)
.vscode/settings.json
.idea/
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
# ๐งช The Laboratory (Testing & Coverage)
# --------------------------------------
# Keep the experimental data private!
coverage/
.coverage/
*.lcov
.nyc_output/
test-results/
playwright-report/
playwright/.cache/
# ๐ The Recipe Analytics (Logs & Monitoring)
# -------------------------------------------
# Don't expose our cooking process logs!
logs/
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*
# ๐ฏ The Taste Test Records (OS & Editor Files)
# ---------------------------------------------
# Every chef has their own utensils!
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
desktop.ini
# ๐ง The Special Kitchen Tools (Development)
# ------------------------------------------
# Our custom utensils and gadgets!
.vscode/
!.vscode/extensions.json
!.vscode/settings.json.example
.idea/
*.swp
*.swo
*~
# ๐๏ธ The Recipe Archive (Temporary Files)
# ----------------------------------------
# Don't save the messy drafts!
*.tmp
*.temp
.cache/
.temp/
.vercel/
.next/
next-env.d.ts
# ๐จ The Presentation Studio (Generated Assets)
# ---------------------------------------------
# Auto-generated garnishes stay in the kitchen!
.eslintcache
*.tgz
*.tar.gz
# ๐ The Delivery Truck (Deployment)
# ----------------------------------
# Keep deployment secrets under wraps!
.vercel/
.netlify/
.firebase/
.aws/
.gcp/
# ๐ฑ The Mobile Kitchen (React Native - Future)
# ---------------------------------------------
# In case we expand to mobile cooking!
# Xcode
*.xcodeproj
DerivedData/
*.hmap
*.ipa
*.xcuserstate
ios/.xcode.env.local
# Android
*.apk
*.aab
*.dex
*.ap_
*.class
bin/
gen/
.gradle/
local.properties
# ๐ฌ The Quality Control Lab (Code Analysis)
# ------------------------------------------
# Keep quality metrics internal!
.sonarqube/
.scannerwork/
.eslintcache
# ๐ The Reference Library (Documentation Build)
# ----------------------------------------------
# Auto-generated docs stay out of the recipe book!
docs/build/
typedoc/
.docusaurus/
# ๐ญ The Backup Kitchen (Backups & Archives)
# ------------------------------------------
# Old recipes and failed experiments!
*.backup
*.bak
*.old
*.orig
backup/
backups/
# ๐ The International Kitchen (i18n Build Files)
# -----------------------------------------------
# Compiled translations - generate fresh each time!
locales/compiled/
*.mo
# ๐ The Version Control Seasoning
# --------------------------------
# Keep version control clean and tasty!
.git/
.svn/
.hg/
# ๐ช The Testing Circus (Browser Testing)
# ---------------------------------------
# Browser automation artifacts!
cypress/videos/
cypress/screenshots/
cypress/downloads/
.cypress/
# ๐งน The Cleanup Crew (Cache & Temporary)
# ---------------------------------------
# Temporary files that accumulate over time!
.npm/
.yarn/
.pnp.*
.yarn/cache/
.yarn/unplugged/
.yarn/build-state.yml
.yarn/install-state.gz
# ๐ The Food Inspector (Static Analysis)
# ---------------------------------------
# Analysis reports and linting cache!
.eslintcache
.stylelintcache
.prettiercache
# ๐ The Restaurant Analytics (Bundle Analysis)
# ---------------------------------------------
# Bundle analysis reports!
bundle-analyzer-report.html
stats.json
# ๐ณ Chef's Personal Notes (Local Development)
# --------------------------------------------
# Personal development setup and notes!
.local/
todo.md
notes.md
scratch.js
playground/
# ๐ฎ The Sacred Phoenix Protocols (Emergency Restoration)
# -------------------------------------------------------
# Keep restoration methods and emergency protocols secret!
๐ฎ_PHOENIX_REVIVAL_PROTOCOL.md
*PHOENIX*.md
*REVIVAL*.md
*EMERGENCY*.md
BACKUP_INSTRUCTIONS*.md
RESTORE_GUIDE*.md
# ๐ The Chef's Issue Journal (Project Management)
# ------------------------------------------------
# Keep internal issue templates and management docs private!
/issue
# ๐จ The Art Studio (Design Assets - Large Files)
# -----------------------------------------------
# Keep large design files out of the main recipe!
*.psd
*.ai
*.sketch
*.fig
assets/raw/
design-files/
# ๐ The Digital Safe (Security & Secrets)
# ----------------------------------------
# NEVER share these ingredients!
*.pem
*.key
*.cert
*.crt
*.p12
secrets/
private/
confidential/
# ๐งช The Experimental Kitchen (Prototypes)
# ----------------------------------------
# Keep experiments and prototypes private!
prototypes/
experiments/
poc/
sandbox/
# ๐ The Business Intelligence (Analytics)
# ----------------------------------------
# Keep usage analytics and metrics private!
analytics/
metrics/
reports/
.amplitude/
.mixpanel/
# ๐ The Continuous Kitchen (CI/CD Artifacts)
# -------------------------------------------
# Build system artifacts!
.github/workflows/secrets/
.gitlab-ci-local/
.circleci/local/
# ๐ The VIP Section (Premium Features)
# -------------------------------------
# Keep premium/pro features under development secret!
premium/
pro/
enterprise/
paid-features/
# ๐ญ The Staging Area (Preview Deployments)
# -----------------------------------------
# Staging and preview deployment configs!
.preview/
.staging/
preview-*.json
# ๐ Allow PHP example algorithms in public code directory
!SortVision/public/code/**/*.php
# ===============================================================
# ๐ End of SortVision's Secret Recipe
# ===============================================================
#
# Remember: A good chef never reveals all their secrets! ๐คซ
# But they do share their delicious creations with the world! ๐
#
# Happy Coding! ๐จโ๐ปโจ
# - alienX & the SortVision Community
#
# P.S. If you find any ingredients missing from this recipe,
# feel free to add them! The kitchen is always evolving! ๐
# ===============================================================