This repository was archived by the owner on Jul 24, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
195 lines (173 loc) · 3.25 KB
/
Copy path.gitignore
File metadata and controls
195 lines (173 loc) · 3.25 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
# .gitignore
# Compiled binaries
arkfile
arkfile-alpine
/arkfile-client
/arkfile-admin
totp-generator
bin/
obj/
*.out
*.so
*.o
*.a
go.sum
# Go module vendor tree (go mod vendor only — no C sources here)
vendor/*
# C/crypto vendor tree (git submodules + on-demand clones; never touched by go mod vendor)
vendor_c/stef/libopaque/src/*.so
vendor_c/stef/libopaque/src/*.o
vendor_c/stef/libopaque/src/*.a
vendor_c/stef/liboprf/src/*.so
vendor_c/stef/liboprf/src/*.o
vendor_c/stef/liboprf/src/*.a
vendor_c/stef/liboprf/src/noise_xk/*.so
vendor_c/stef/liboprf/src/noise_xk/*.o
vendor_c/stef/liboprf/src/noise_xk/*.a
# Vendored libsodium build outputs
vendor_c/jedisct1/libsodium/src/libsodium/.libs/
vendor_c/jedisct1/libsodium/**/*.lo
vendor_c/jedisct1/libsodium/**/Makefile
vendor_c/jedisct1/libsodium/**/config.h
vendor_c/jedisct1/libsodium/**/config.log
vendor_c/jedisct1/libsodium/**/config.status
vendor_c/jedisct1/libsodium/**/libtool
vendor_c/jedisct1/libsodium/**/stamp-h1
vendor_c/jedisct1/libsodium/autom4te.cache/
# On-demand FIDO2 source clones (build-libfido2.sh)
vendor_c/yubico/
vendor_c/madler/
vendor_c/openssl/
*.tmp
*.swp
.vscode/
.idea/
*.bak
*.old
.env
secrets.env
build/
arkfile.db
arkfile-test.db
# Test artifacts and generated files
test/
integration_tests/
*.arkfile
performance_*.txt
performance_*.json
benchmark_*.log
benchmark_*.json
benchmark_*.csv
*_benchmark_results.*
load_test_*
stress_test_*
# libopaque test artifacts
auth/libopaque_test/test_basic
auth/libopaque_test/test_full_protocol
auth/libopaque_test/test_simple_opaque
# Golden test vectors (format compatibility files)
test/golden/
*/golden/
golden/
# Temporary test files
*_test_output.*
*_benchmark.*
*_performance.*
# Log files (all types and locations)
logging/logs/*.log
logs/
var/log/
var/logs/
**/logs/
**/log/
*.log
*_*.log
audit_*.log
security_*.log
access_*.log
error_*.log
debug_*.log
trace_*.log
app_*.log
arkfile_*.log
service_*.log
# Test reports and coverage
coverage.out
coverage.html
test_results/
test_reports/
junit.xml
test-output/
htmlcov/
.coverage
coverage/
# Temporary and generated files
tmp/
temp/
*.tmp
*.temp
*_temp.*
*_tmp.*
.cache/
cache/
# Test certificates and keys (not production ones)
test_certs/
test_keys/
*.pem.test
*.key.test
*.crt.test
cert_test_*
key_test_*
# Test databases and storage
test.db
*.test.db
test_data/
mock_data/
fixtures/
test_uploads/
# Integration test artifacts
integration_test_*
e2e_test_*
test_artifacts/
test_downloads/
# Monitoring and health check data
health_check_*.json
monitor_*.log
metrics_*.json
status_*.json
# Build and deployment testing
dist/
build_test/
deploy_test/
package_test/
release_test/
# Node.js / Bun / TypeScript artifacts
node_modules/
client/static/js/node_modules/
*.lockb
bun.lockb
package-lock.json
yarn.lock
client/static/js/dist/
client/static/js/.buildcache
dist/
.tsbuildinfo
# Service worker build output (built from src/sw-download.ts)
client/static/js/sw-download.js
client/static/js/sw-download.js.map
# libopaque WASM/JS files (built from vendor submodule during deployment)
client/static/js/libopaque.js
client/static/js/libopaque.debug.js
# Build cache files
.vendor_cache
# Playwright artifacts
test-results/
playwright-report/
blob-report/
playwright/.cache/
# Runtime artifacts
pid/
*.pid
*.lock
core.*
dump.*