-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
54 lines (41 loc) · 645 Bytes
/
Copy path.gitignore
File metadata and controls
54 lines (41 loc) · 645 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
# Ignore all config.yml files wherever they appear
**/config.yml
# Ignore all .env files (including .env.local, .env.production, etc.)
*.env
*.env.*
# Go build outputs
/bin/
/build/
/out/
# Vendor directory (if you ever vendor dependencies)
/vendor/
# Go modules
/go.sum
# IDE/editor settings
*.swp
*~
.vscode/
.idea/
*.iml
# OS files
.DS_Store
Thumbs.db
# Logs
*.log
# Temporary files
*.tmp
*.temp
# Database files
*.db
*.sqlite
# Coverage reports
coverage.out
*.coverprofile
# Kubernetes/Docker overrides
**/*.local.yml
**/*.override.yml
# TLS certificates
*.crt
*.key
# Generated code (e.g., via mockery or swagger)
/**/gen_*.go