-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
181 lines (156 loc) · 3.03 KB
/
.gitignore
File metadata and controls
181 lines (156 loc) · 3.03 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
# Java / JVM
*.class
*.jar
*.war
*.ear
*.nar
*.zip
*.tar.gz
*.rar
hs_err_pid*
hs_err_pid*.log
# Build directories
target/
/build/
/out/
/dist/
/tmp/
# Maven
pom.xml.tag
pom.xml.releaseBackup
pom.xml.versionsBackup
release.properties
dependency-reduced-pom.xml
buildNumber.properties
.mvn/timing.properties
# Gradle
.gradle/
/gradle-app.setting
!gradle/wrapper/gradle-wrapper.jar
# Quarkus / native-image artifacts
**/target/*-runner
quarkus-app/
/native-image-output/
/build/native/
# Node / frontend (if present)
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.pnpm-debug.log*
# Next.js
/utils/nextjs-dash/.next/
/utils/nextjs-dash/out/
/utils/nextjs-dash/.env*.local
/utils/nextjs-dash/next-env.d.ts
/utils/nextjs-dash/quality-report/
/utils/nextjs-dash/eslint-report.json
/utils/nextjs-dash/tsc-output.txt
# Go Enhanced CI quality report artifacts
/services/go/enhanced/quality-report/
/services/go/enhanced/golangci-lint-report.json
# Docker / containers / local compose overrides
.env.local
.env.*.local
docker-compose.override.yml
docker-compose.local.yml
docker-compose.*.local.yml
docker-compose.*.override.yml
/data/tempo/**
!/data/tempo/.gitkeep
/data/loki/**
!/data/loki/.gitkeep
/data/services/quarkus/native/jfr/
/results/benchmark/**
!/results/benchmark/.gitkeep
# Logs and temp files
*.log
*.tmp
*.temp
*.hprof
# OS files
.DS_Store
Thumbs.db
desktop.ini
# IDEs and editors
# IntelliJ
/.idea/**
!/.idea/misc.xml
*.iml
/.idea_modules/
.idea/**/workspace.xml
.idea/**/tasks.xml
.idea/**/shelf/
# Eclipse
.metadata/
*.classpath
*.project
.settings/
# VS Code
.vscode/
.history/
# Sublime
*.sublime-workspace
*.sublime-project
# Test / coverage
coverage/
*.lcov
.junit_cache/
test-results/
*.retry
# Python / Django
__pycache__/
*.py[cod]
*.pyo
.Python
*.egg-info/
*.egg
.eggs/
venv/
venv.bak/
.venv*/
db.sqlite3
db.sqlite3-journal
.mypy_cache/
.ruff_cache/
.pytest_cache/
# Misc
*.swp
*~
*.bak
*.orig
*.ps1
# Qodana local output
/.qodana/**
!/.qodana/baseline/
!/.qodana/baseline/**
# Keep docs, GitHub automation, and Qodana config tracked (explicit, in case of broader ignore rules)
!/docs/
!/.github/
!/.qodana/
!/qodana.yaml
!/.github/workflows/qodana_code_quality.yml
# Local Bundler state for docs development
/docs/.bundle/
# TypeScript incremental build cache
*.tsbuildinfo
output-*.txt
.env.backup.*
# Vitest / test report artifacts
vitest-*.json
/.profileconfig.json
/services/java/quarkus/jvm/target/
# Jekyll / GitHub Pages (generated output + caches)
/docs/.jekyll-cache/
/docs/.sass-cache/
/docs/_site/**
# NOTE: The project publishes documentation via GitHub Pages.
# For this repo, the generated site output under `docs/_site/` is expected to be committed
# (it is what GitHub Pages serves). Do NOT ignore it, otherwise subpage navigation 404s.
# See: https://george-c-odes.github.io/Observability-Benchmarking/
#
# If you switch to "Pages -> Deploy from a branch" using the `/docs` folder directly with
# Jekyll build on GitHub, you may re-add this ignore.
# /docs/_site/
/docs/vendor/
/services/python/django/gunicorn/common/build/