-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
60 lines (51 loc) · 737 Bytes
/
Copy path.gitignore
File metadata and controls
60 lines (51 loc) · 737 Bytes
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
# Go build outputs
*.exe
*.exe~
*.dll
*.so
*.dylib
*.test
*.out
*.prof
# Coverage
coverage.out
coverage.html
coverage.txt
*.cover
# Go workspace files (local only)
go.work
go.work.sum
# Vendoring (not used — modules are cached by the toolchain)
/vendor/
# Binaries produced by this project
/shellboto
/cmd/shellboto/shellboto
/bin/
/dist/
/build/
# SQLite state (local dev; the real DB lives under /var/lib/shellboto)
*.db
*.db-journal
*.db-shm
*.db-wal
*.sqlite
*.sqlite-journal
*.sqlite-shm
*.sqlite-wal
# Secrets / local overrides (deploy/env.example is the committed template)
.env
.env.local
/config.toml
/config.local.toml
# Logs
*.log
# Editors
.vscode/
.idea/
*.swp
*.swo
*~
# OS cruft
.DS_Store
Thumbs.db
desktop.ini