-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
259 lines (220 loc) Β· 3 KB
/
.gitignore
File metadata and controls
259 lines (220 loc) Β· 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
# ZKAnalyzer v3.5 - Comprehensive .gitignore
# =============================================
# π¦ Rust specific
/target/
**/*.rs.bk
*.pdb
Cargo.lock
# π§ Build artifacts
/build/
/dist/
*.exe
*.dll
*.so
*.dylib
*.a
*.lib
# π IDE and editor files
.vscode/
.idea/
*.swp
*.swo
*~
.DS_Store
Thumbs.db
# π Security and secrets
*.key
*.pem
*.p12
*.pfx
.env
.env.local
.env.production
.env.test
config/secrets.yaml
config/production-secrets.yaml
*.secret
# π Logs and temporary files
*.log
logs/
*.tmp
*.temp
/tmp/
.cache/
*.pid
*.seed
*.pid.lock
# πΎ Database files
*.db
*.sqlite
*.sqlite3
*.db-journal
*.db-wal
*.db-shm
data/
backups/
*.backup
# π Monitoring and metrics data
metrics/
prometheus/
grafana/
*.rrd
*.metrics
# π§ͺ Test artifacts
test_results/
coverage/
*.profraw
*.profdata
flamegraph.svg
perf.data*
# π¦ Package manager artifacts
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
package-lock.json
yarn.lock
# π³ Container artifacts
.dockerignore
Dockerfile*
docker-compose*.yml
.docker/
# βοΈ Cloud and deployment
.terraform/
*.tfstate
*.tfstate.backup
.terraform.lock.hcl
.aws/
.gcp/
.azure/
# π± Mobile and platform specific
*.ipa
*.apk
*.aab
# π Version control
.git/
.gitmodules
.gitattributes
# π Documentation build artifacts
docs/_build/
docs/site/
*.pdf
*.epub
# π― ZKAnalyzer specific exclusions
# Development reference files
zkanalyserprd.txt
*prd.txt
requirements.txt
# Configuration with sensitive data
config/production.yaml
config/api-keys.yaml
config/webhooks.yaml
# Runtime data
runtime/
plugins/downloaded/
plugins/cache/
audit-logs/
exports/
# Performance profiling
*.perf
*.trace
*.flame
profiling/
# Plugin development
plugins/dev/
plugins/testing/
*.plugin.tmp
# Solana specific
keypairs/
wallets/
*.json.key
# Alert testing
alert-tests/
webhook-tests/
# Temporary analysis files
analysis/
reports/
*.analysis
*.report
# PM2 runtime files
.pm2/
pm2.log
ecosystem.config.js.backup
# NGINX temporary files
nginx.conf.backup
ssl/
# Backup files
*.bak
*.backup
*.old
*~
# OS generated files
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
# Archive files
*.zip
*.tar.gz
*.rar
*.7z
# Compiled binaries
zkanalyzer
zkanalyzer.exe
zkanalyzer-cli
zkanalyzer-cli.exe
# Development tools
.cargo/
.rustup/
rust-toolchain.toml.backup
# Benchmark results
benchmarks/
*.bench
criterion/
# Memory dumps
*.dmp
core.*
vgcore.*
# Network captures
*.pcap
*.pcapng
# Temporary plugin files
*.so.tmp
*.dll.tmp
*.dylib.tmp
# Configuration backups
*.yaml.bak
*.toml.bak
*.json.bak
# Runtime state
state/
checkpoints/
snapshots/
# Development databases
dev.db
test.db
local.db
# Temporary exports
exports/*.json
exports/*.csv
exports/*.parquet
# Plugin signatures (keep in repo but exclude temporary)
plugins/signatures/*.tmp
plugins/signatures/*.pending
# Keep important files (negative patterns)
!.gitkeep
!README.md
!LICENSE
!Cargo.toml
!src/
!config/test.yaml
!config/example.yaml
!deployment/
!scripts/
!tests/
!docs/
!plugins/examples/
!.github/