-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
66 lines (53 loc) · 843 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
# Binaries for programs and plugins
*.exe
*.dll
*.so
*.dylib
*.test
*.out
# Go build artifacts
/build/
*.o
*.a
*.out
*.exe
# Go workspace and dependency directories
vendor/
go.sum
# Go module and workspace files
go.work
go.work.sum
# Logs
*.log
# Node modules (if you ever include any frontend dependencies)
node_modules/
# Temporary files
*.tmp
*.swp
*.bak
*~
*.old
*.orig
# IDE and editor directories/files
.vscode/
.idea/
*.iml
# Docker-related files
**/Dockerfile
docker-compose.yml
docker-compose.override.yml
# Terraform files
*.tfstate
*.tfstate.*
.terraform/
.terraform.lock.hcl
# Ignore deployment.yaml if it's generated or managed outside VCS
**/deployment.yaml
# Ignore documentation build artifacts (if applicable)
docs/build/
# Sensitive configuration files (if any)
*.env
*.secret
# System files
.DS_Store
Thumbs.db