-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
239 lines (195 loc) · 4.68 KB
/
Copy path.gitignore
File metadata and controls
239 lines (195 loc) · 4.68 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
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
# =============================================================================
# Platform Workloads - .gitignore
# =============================================================================
# =============================================================================
# LARGE DATASET FILES (stored in GitHub Releases)
# =============================================================================
# Cloud Workloads - Data Analytics
**/data/wiki
**/data/wiki.gz
*.wiki
**/*-job.jar
**/mahout-examples-*.jar
# Cloud Workloads - Graph Analytics
**/twitter-data/edges.csv
**/twitter-data/edges.csv.gz
**/host/spark-*.tgz
**/spark-*.tgz
# Cloud Workloads - In-Memory Analytics
**/data/ml-latest/
**/ml-latest.zip
# Cloud Workloads - Media Streaming (downloaded from CloudSuite during build)
**/videos/*.mp4
**/VideoSet/
**/videos/full-*.mp4
# FaaS Workloads - Files stored in GitHub Releases
faas/dataset/
# Large CSV files are compressed as .zip files and committed directly to git
# Keep medium files (~49MB) like reviews50mb.csv in git
# Note: Medium files (~49MB) and compressed large files are kept in git
# =============================================================================
# BUILD ARTIFACTS & DEPENDENCIES
# =============================================================================
# Build directories
**/target/
**/build/
**/dist/
**/.build/
**/out/
# Docker artifacts
**/.dockerignore
**/docker-compose.override.yml
**/docker-compose.*.yml
# Package managers
**/node_modules/
**/vendor/
**/venv/
**/env/
**/.env
# =============================================================================
# DEVELOPMENT & IDE FILES
# =============================================================================
# IDE and editor files
**/.vscode/
**/.idea/
**/.vs/
**/*.swp
**/*.swo
**/*.tmp
**/*~
**/.sublime-*
# Editor configs (keep project-level configs)
!/.vscode/settings.json
!/.vscode/launch.json
!/.vscode/tasks.json
# =============================================================================
# LANGUAGE-SPECIFIC CACHE & ARTIFACTS
# =============================================================================
# Python
**/__pycache__/
**/*.pyc
**/*.pyo
**/*.pyd
**/.pytest_cache/
**/.coverage
**/.tox/
**/.mypy_cache/
# Java
**/*.class
**/*.jar
**/*.war
**/*.ear
**/*.nar
**/.gradle/
# Node.js
**/npm-debug.log*
**/yarn-debug.log*
**/yarn-error.log*
**/.npm
**/.yarn/
# Go
**/go.sum
**/vendor/
# Rust
**/target/
**/*.rs.bk
# =============================================================================
# OPERATING SYSTEM FILES
# =============================================================================
# macOS
**/.DS_Store
**/.AppleDouble
**/.LSOverride
**/Icon
**/.Spotlight-V100
**/.Trashes
# Windows
**/Thumbs.db
**/ehthumbs.db
**/Desktop.ini
**/$RECYCLE.BIN/
# Linux
**/.Trash-*
**/.nfs*
# =============================================================================
# LOGS & TEMPORARY FILES
# =============================================================================
# Log files
**/*.log
**/logs/
**/.logs/
# Temporary files
**/tmp/
**/temp/
**/.tmp/
**/.temp/
# Backup files
**/*.bak
**/*.backup
**/*.orig
**/*.swp
# Archive files (unless specifically needed)
**/*.tar
**/*.tar.gz
**/*.tgz
**/*.zip
**/*.rar
**/*.7z
# =============================================================================
# RUNTIME & CONFIGURATION
# =============================================================================
# Runtime configuration
**/.env.local
**/.env.*.local
**/config/local.*
# SSL certificates
**/*.pem
**/*.key
**/*.crt
**/*.p12
# SSH keys
**/id_rsa
**/id_dsa
**/id_ecdsa
**/id_ed25519
# =============================================================================
# PROJECT-SPECIFIC EXCLUSIONS
# =============================================================================
# Stress testing output
**/stress_output/
**/trace_output/
**/benchmark_results/
# Firecracker runtime files
**/firecracker-v*/
**/vmlinux*
**/rootfs*
# Container runtime artifacts
**/containerd/
**/runc/
**/cri-o/
# Performance monitoring
**/perf.data*
**/trace.out
**/profile.out
# =============================================================================
# EXCEPTION RULES (files to keep despite patterns above)
# =============================================================================
# Keep important configuration templates
!**/config/template.*
!**/config/example.*
# Keep documentation assets
!**/docs/**/*.png
!**/docs/**/*.jpg
!**/docs/**/*.gif
# Keep sample/test data (small files)
!**/samples/**
!**/test-data/**
# Keep CI/CD configurations
!/.github/
!/.gitlab-ci.yml
!/.travis.yml
!/Dockerfile*
!/docker-compose.yml
# Keep FaaS compressed dataset files
!faas/model_training/*.zip
!faas/**/*reviews*.zip