-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
347 lines (287 loc) · 5.3 KB
/
.gitignore
File metadata and controls
347 lines (287 loc) · 5.3 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
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
# See https://help.github.com/articles/ignoring-files for more about ignoring files.
#
# If you find yourself ignoring temporary files generated by your text editor
# or operating system, you probably want to add a global ignore instead:
# git config --global core.excludesfile '~/.gitignore_global'
# Ignore bundler config.
/.bundle
# Ignore the default SQLite database.
/db/*.sqlite3
/db/*.sqlite3-journal
# Ignore all logfiles and tempfiles.
/log/*
!/log/.keep
/tmp/*
!/tmp/.keep
# Ignore uploaded files in development.
/storage/*
!/storage/.keep
# Ignore assets.
/public/assets/
# === SECURITY: Environment and Secret Files ===
# Environment files (comprehensive protection)
.env
.env.*
!.env.example
!.env.*.example
!.env.sample
!.env.template
# Rails secrets and encryption keys
config/master.key
config/credentials.yml.enc
config/credentials/
*.key
*.pem
*.p12
*.p7b
*.pfx
*.jks
*.keystore
# Session and encryption keys
.session.key
session.key
encryption.key
*session*.key
# API keys and tokens
*secret*
!**/secret_manager.rb
*private*
*.token
*.tokens
api_keys.yml
api_keys.json
credentials.json
auth.json
# Kamal deployment secrets
.kamal/secrets
.kamal/.env
kamal.env
# Docker secrets and configs
docker/secrets/
.docker/config.json
.docker/daemon.json
# Temporary secret files
tmp/*secret*
tmp/*key*
tmp/*credential*
tmp/*token*
tmp/.env*
# Database dumps with potential secrets
*.sql
*.dump
*.db
*.sqlite*
backup/
backups/
dumps/
database_backups/
# Development database files (specific SQLite files)
development.sqlite3
test.sqlite3
*.sqlite3-journal
# SSL/TLS certificates and security files
*.crt
*.cert
*.cer
*.ca-bundle
*.ca
*.ca-cert
*.chain
ssl/
certificates/
certs/
tls/
# Test credentials (generated by rails db:seed)
test-credentials.json
# Cloud provider credentials
.aws/
.gcp/
.gcloud/
.azure/
*-credentials.json
service-account.json
service-account-key.json
gcp-*.json
aws-*.json
# GitHub and CI/CD secrets
.github/secrets/
.secrets/
secrets/
secrets.yml
secrets.json
# Kubernetes secrets
k8s/secrets/
kubernetes/secrets/
*-secret.yaml
*-secret.yml
# Terraform sensitive files
*.tfvars
terraform.tfstate*
.terraform/
# HashiCorp Vault
.vault-token
vault-*
# SSH keys and certificates
id_rsa*
id_dsa*
id_ecdsa*
id_ed25519*
*.pub
known_hosts
authorized_keys
# Payment gateway specific
stripe_*
paypal_*
*_stripe_*
*_paypal_*
# Ignore node_modules
node_modules/
/node_modules
# Extension frontend symlinks (created by scripts/setup-extension-frontend-symlinks.sh).
# These are symlinks not directories, so they don't match the `node_modules/`
# trailing-slash rule above.
extensions/*/frontend/node_modules
# Ignore compiled assets
/public/packs
/public/packs-test
/public/assets
# Logs and operational files (consolidated)
*.log
*.log.*
logs/
log/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
*.pid
*.pid.lock
# Ignore yarn files
.pnp
.pnp.js
# Coverage directories and test reports (consolidated)
coverage/
.coverage/
/coverage/
.nyc_output
.nyc_output/
test-results/
cypress/screenshots/
cypress/videos/
cypress/downloads/
spec/reports/
junit.xml
# Playwright
playwright-report/
playwright/.cache/
e2e/.auth/
blob-report/
# Dependency directories
jspm_packages/
# Optional npm cache directory
.npm
# Optional eslint cache
.eslintcache
# Microbundle cache
.rpt2_cache/
.rts2_cache_cjs/
.rts2_cache_es/
.rts2_cache_umd/
# Optional REPL history
.node_repl_history
# Output of 'npm pack'
*.tgz
# Yarn Integrity file
.yarn-integrity
# Ignore parcel-bundler cache
.cache
.parcel-cache
# Ignore Next.js build output
.next
# Ignore Nuxt.js build / generate output
.nuxt
dist
# Ignore Gatsby files
.cache/
/public
# Ignore Vuepress build output
.vuepress/dist
# Ignore Serverless directories
.serverless/
# Ignore FuseBox cache
.fusebox/
# Ignore DynamoDB Local files
.dynamodb/
# Ignore TernJS port file
.tern-port
# Claude Flow system metrics and cache
.claude-flow/
# Claude Code worktrees (temporary isolated git worktrees from agent execution)
.claude/worktrees/
.claude/*.lock
# MCP configuration (generated per-environment via: scripts/manage-proxy-hosts.sh generate-mcp)
.mcp.json
# IDE and editor files (consolidated)
.vscode/
.idea/
*.iml
*.ipr
*.iws
.idea/dataSources.xml
.idea/dataSources.ids
.idea/sqlDataSources.xml
# Terminal multiplexer (personal dev config)
.tmux.conf
*.tmux.conf
# OS generated files
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
# Backup and temporary files (consolidated)
*.bak
*.backup
*.old
*.orig
*.rej
*.swp
*.swo
.*.swp
.*.swo
*.tmp
*.temp
*.un~
*~
.#*
\#*\#
\#*#
# Archive files that might contain sensitive data
*.tar.gz
*.zip
*.7z
*.rar
exports/
export.json
export.csv
# Defunct swarm tooling (replaced by MCP shared memory)
.swarm/
# Security scan reports (generated locally)
security-reports/
# Auto-generated docs (source of truth is MCP/database)
docs/platform/knowledge/
docs/TODO.md
docs/platform/MCP_TOOL_CATALOG.md
# RSpec auto-generated example files
worker/spec/examples.txt
# Ad-hoc test scripts with potential secrets
server/scripts/test_*.sh
server/scripts/trigger_*.sh
# Test output artifacts
**/rspec_results.json
# Per-host extension enable/disable state (written by admin "Toggle Extension")
config/extensions_state.json
# Private extensions (added manually by maintainers with access to the private repository)
/extensions/business/
/extensions/trading/