-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
215 lines (174 loc) · 3.09 KB
/
.gitignore
File metadata and controls
215 lines (174 loc) · 3.09 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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
# Binaries for programs and plugins
*.exe
*.exe~
*.dll
*.so
*.dylib
news-api
news
main
# worker
app
# Note: 'api' removed from here to allow cmd/api/ directory
# Compiled binaries directory
/bin/
# Test binary, built with `go test -c`
*.test
# Output of the go coverage tool
*.out
*.prof
coverage.html
# Dependency directories (remove the comment below to include it)
vendor/
archive/
# Go workspace file
go.work
# IDE specific files
.idea/
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
*.code-workspace
.history/
# Build outputs
bin/
build/
dist/
# Environment & secrets
.env
.env.*
.env.backup
!.env.example
!.env.local
!.env.development
!.env.testing
# Environment-specific configurations (keep development and testing, exclude production)
environments/production/.env
!environments/development/.env
!environments/testing/.env
# Security files
*.pem
*.key
*.crt
*.csr
# macOS specific
.DS_Store
.AppleDouble
.LSOverride
# Logs
logs/
*.log
npm-debug.log*
# Docker
.docker/
.dockerignore
# Database files
*.db
*.sqlite
*.sqlite3
dump.rdb
# Prometheus & Grafana data
prometheus/data/
grafana/data/
# OpenTelemetry data
otel/data/
# Temporary files
tmp/*
temp/
*.tmp
*~
*.bak
*.swp
# Local configuration overrides
config.local.yaml
config.local.json
# Build artifacts
.cache/
# Migration lockfiles
migrations/.lock
# Test results
TEST-*.xml
# Performance test reports (large files)
reports/performance/
reports/baseline/
logs/performance/
# Large data files
*.json.gz
*.csv.gz
*performance*.json
*baseline*.json
*spike-traffic*.json
*normal-traffic*.json
*database-performance*.json
# Tool binaries
migrate-tool
news-api
# Docker binaries and images
docker-compose.override.yml
.docker-compose.override.yml
*.tar
*.tar.gz
# Go compiled binaries
# /cmd/api/api
# /cmd/migrate/migrate
# /cmd/*/main
# /cmd/*/*.exe
# /cmd/*/*.test
# Additional build artifacts
*.out
*.prof
*.exe
*.dll
*.so
*.dylib
/debug/debug_client
/debug/debug_server
# Container volumes and data
docker-data/
postgres-data/
redis-data/
volumes/
# backup files
*.bak
backups
# archive
archive
# Legacy test files (use /tests/ instead)
internal/tests/
news-app/
node_modules/
# Development and testing files
*.test
*.log
migrate-tool
TODO.md
.secrets
.actrc
# Build artifacts and temporary files
coverage.html
coverage.out
api.log
integration.test
unit.test
# Documentation (auto-generated)
# Swagger/OpenAPI documentation files
# These are auto-generated via Air and Docker workflows
#
# The canonical swagger docs are maintained in cmd/api/docs/ and tracked in git
# Files in docs/ directory are Docker-generated duplicates and should be ignored
# to prevent conflicts and maintain single source of truth
#
# Documentation workflow:
# - Air automatically generates swagger files in cmd/api/docs (tracked in git)
# - make docs: Also generates swagger files in cmd/api/docs
# - make docs-serve: Copies files to serve via Swagger UI container
# - Swagger UI available at http://localhost:8091 for standalone viewing
docs/swagger.json
docs/swagger.yaml
docs/docs.go
# Scripts and automation
demo/
tmp
AGENT_*.md