blob: b1aba02606d5ea8af6b06659d4c560fb37d0a9df (
plain)
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
|
# ===== Go build artifacts =====
bridge-server
*.exe
*.exe~
*.dll
*.so
*.dylib
*.test
*.out
# Go workspace file (optional; commit only if you intentionally use it)
go.work
# ===== Dependency / module cache (never commit) =====
vendor/
# ===== Environment / secrets =====
.env
.env.*
tokens.json
tokens.local.json
# ===== Logs =====
*.log
logs/
# ===== OS junk =====
.DS_Store
Thumbs.db
# ===== IDEs =====
.idea/
.vscode/
*.swp
*.swo
# ===== Coverage =====
coverage.out
coverage.html
|