-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
77 lines (60 loc) · 963 Bytes
/
.gitignore
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
# Ignore the Google Cloud SDK directory
/google-cloud-sdk/
# Ignore Go binary files
*.exe
*.exe~
*.dll
*.so
*.dylib
# Ignore Go vendor directories
vendor/
# Ignore build output
bin/
*.out
# Ignore IDE and editor files
.idea/
*.iml
.vscode/
*.swp
# Ignore system files
.DS_Store
Thumbs.db
# Ignore log files
*.log
# Ignore environment variables and credentials
.env
.env.local
.env.*.local
# Ignore node_modules if using Node.js for frontend dependencies
node_modules/
# Ignore coverage files generated by testing tools
coverage/
*.lcov
# Ignore compiled code and temporary files
*.o
*.a
*.so
# Ignore database files
*.db
*.sqlite
*.sqlite3
# Ignore static assets build outputs
frontend/static/
public/
# Ignore Go module dependencies
/go.sum
/go.mod
# Ignore user-specific settings
*.local
# Ignore temporary files and directories
tmp/
*.tmp
*.temp
*.bak
*.backup
# Ignore macOS specific files
.DS_Store
.AppleDouble
.LSOverride
# Thumbnails
._*