-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path.gitignore
More file actions
173 lines (146 loc) · 3.72 KB
/
.gitignore
File metadata and controls
173 lines (146 loc) · 3.72 KB
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
# Copyright The Linux Foundation and each contributor to LFX.
# SPDX-License-Identifier: MIT
# ==============================================================================
# Build artifacts and binaries
# ==============================================================================
bin/
dist/
build/
*.exe
*.exe~
*.dll
*.so
*.dylib
project-api
# ==============================================================================
# Go specific files
# ==============================================================================
# Test binary, built with `go test -c`
*.test
# Output of the go coverage tool
*.out
coverage.out
coverage/
# Go workspace file
go.work
go.work.sum
# Module download cache
go.sum.bak
# ==============================================================================
# Generated code and build artifacts
# ==============================================================================
# Generated Goa files (anywhere in the repo except api/project/v1/gen)
**/gen/
!api/project/v1/gen/
# Swagger/OpenAPI generated files
swagger.json
swagger.yaml
# Protobuf generated files
*.pb.go
*_pb2.py
*_pb2_grpc.py
# ==============================================================================
# Development and IDE files
# ==============================================================================
# Environment and configuration files
.env*
!.env.example
# IDE and editor files
.vscode/
.idea/
*.swp
*.swo
*~
# macOS
.DS_Store
.AppleDouble
.LSOverride
# Windows
Thumbs.db
ehthumbs.db
Desktop.ini
# Linux
*~
# ==============================================================================
# Testing and debugging
# ==============================================================================
# Test coverage reports
cover.out
cover.html
coverage.html
coverage.txt
.coverage
# Debug files
debug
debug.log
*.pprof
# ==============================================================================
# Development tools and utilities
# ==============================================================================
# Linter generated files
megalinter-reports/
revive.log
.golangci.yml.bak
# Dependency directories
vendor/
# Temporary files
tmp/
temp/
scratch/
# ==============================================================================
# Container and orchestration
# ==============================================================================
# Docker
.dockerignore.bak
docker-compose.override.yml
# Kubernetes
*.kubeconfig
kubeconfig
# Helm
# Local development values - developers create their own
/charts/lfx-v2-project-service/values.local.yaml
/charts/lfx-v2-project-service/values.dev.yaml
/charts/lfx-v2-project-service/values.personal.yaml
/charts/*/values.local.yaml
/charts/*/values.dev.yaml
/charts/*/values.personal.yaml
# ==============================================================================
# Logs and runtime files
# ==============================================================================
*.log
logs/
/log/
!/internal/log/
# PID files
*.pid
# ==============================================================================
# Security and secrets
# ==============================================================================
# Private keys and certificates
*.pem
*.key
*.crt
*.csr
*.p12
*.pfx
# Secret files
secrets/
.secrets/
*.secret
# ==============================================================================
# Documentation and notes
# ==============================================================================
# Personal notes and TODO files
TODO.personal
NOTES.personal
.todo
.notes
# ==============================================================================
# Backup and temporary files
# ==============================================================================
*.bak
*.backup
*.orig
*.tmp
.#*
#*#