-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
182 lines (152 loc) · 2.87 KB
/
.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
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
# WhatsApp Web Enhancement Application .gitignore
# Comprehensive ignore patterns for Node.js/TypeScript, Python, and Go services
# =================================================================
# Environment & Secrets - Security-critical files
# =================================================================
# Environment files
.env
.env.local
.env.*
!.env.example
.env.development
.env.test
.env.production
# Security certificates and keys
*.pem
*.key
*.crt
*.pfx
*.p12
# Service account and credential files
*.key.json
credentials.json
service-account.json
.aws/
.kube/
*.config.local.*
# =================================================================
# Dependencies - Package management files
# =================================================================
# Node.js
node_modules/
yarn.lock
package-lock.json
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
# Python
__pycache__/
*.py[cod]
venv/
.venv/
.pip-cache/
*.egg-info/
.eggs/
.pytest_cache/
.coverage
coverage.xml
htmlcov/
.tox/
# Go
vendor/
bin/
pkg/
debug
debug.test
_test
# =================================================================
# IDE & Editor - Development environment files
# =================================================================
# VSCode
.vscode/
*.code-workspace
# JetBrains
.idea/
*.iml
*.iws
*.ipr
# Vim
*.swp
*.swo
*~
# macOS
.DS_Store
.AppleDouble
.LSOverride
# Windows
Thumbs.db
ehthumbs.db
Desktop.ini
# =================================================================
# Build & Compile - Generated files and artifacts
# =================================================================
# Frontend builds
.next/
out/
dist/
dist-ssr/
build/
.nuxt/
.output/
storybook-static/
.swc/
.turbo/
# Backend builds
lib/
coverage/
.nyc_output/
# Test coverage
coverage/
.coverage
coverage.xml
# =================================================================
# Logs & Temporary Files
# =================================================================
# Log files
*.log
logs/
tmp/
temp/
# Infrastructure as Code
.serverless/
.terraform/
.terraform.lock.hcl
terraform.tfstate
terraform.tfstate.backup
.helm/
# =================================================================
# Service-Specific Patterns
# =================================================================
# Frontend Service
.next/
out/
.swc/
.turbo/
storybook-static/
# API Gateway Service
dist/
coverage/
.nyc_output/
# Message Service (Go)
debug
debug.test
_test
# Contact & Analytics Services (Python)
.pytest_cache/
.coverage
.mypy_cache/
.ruff_cache/
# Monitoring
grafana-data/
prometheus-data/
elasticsearch-data/
# =================================================================
# Keep Files - Exceptions to ignore patterns
# =================================================================
# Keep example and template files
!.env.example
!template.config.*
!example.config.*
# Keep documentation
!docs/**/*.md