-
Notifications
You must be signed in to change notification settings - Fork 348
/
.gitignore
188 lines (145 loc) · 2.22 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
183
184
185
186
187
# Go vendor
/vendor
/github.com
# Binary files
/kamel
/kamel.*
/license-check
/**/platform-check
bin/
# Config files
/kamel-config.yaml
/.kamel/kamel-config.yaml
# Released Packages
*.tar.gz
sbom.json
# Release Notes
/release-notes.md
# Unuseful file
/resources/operator.yaml
# Bundle directory
/bundle
# Bundle Index directory
/index
index.Dockerfile
# IDEs
.idea
*.iml
.project
.metadata
.gopath
# Temporary Build Files
/api_*
build/_output
build/_offline
build/camel-k-runtime-*-maven-offline.tar.gz
build/_test
build/_maven_output
build/_maven_overlay
build/_kamelets
build/_maven_overlay/
build/maven/target/
build/maven
build/m2
_scratch/
# YAKS test output
.yaks-jbang/
_output/
# envrc
.envrc
# eclipse / vscode
.settings
.classpath
.factorypath
# Created by https://www.gitignore.io/api/go,vim,emacs,visualstudiocode
### Emacs ###
# -*- mode: gitignore; -*-
*~
\#*\#
/.emacs.desktop
/.emacs.desktop.lock
*.elc
auto-save-list
tramp
.\#*
# Org-mode
.org-id-locations
*_archive
# flymake-mode
*_flymake.*
# eshell files
/eshell/history
/eshell/lastdir
# elpa packages
/elpa/
# reftex files
*.rel
# AUCTeX auto folder
/auto/
# cask packages
.cask/
dist/
# Flycheck
flycheck_*.el
# server auth directory
/server/
# projectiles files
.projectile
projectile-bookmarks.eld
# directory configuration
.dir-locals.el
# saveplace
places
# url cache
url/cache/
# cedet
ede-projects.el
# smex
smex-items
# company-statistics
company-statistics-cache.el
# anaconda-mode
anaconda-mode/
### Go ###
# Binaries for programs and plugins
*.exe
*.exe~
*.dll
*.so
*.dylib
# Test binary, build with 'go test -c'
*.test
# Output of the go coverage tool
coverage.out
coverage
### Vim ###
# swap
.sw[a-p]
.*.sw[a-p]
# session
Session.vim
# temporary
.netrwhist
# auto-generated tag files
tags
### VisualStudioCode ###
.vscode
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
# Unix line endings for the Maven wrapper script
mvnw text eol=lf
.history
# End of https://www.gitignore.io/api/go,vim,emacs,visualstudiocode
### config kustomize ###
config/**/*.gen.tmpl
config/**/*.gen.yaml
config/**/*.gen.json
*-installer*
# Fabric8 CRDs
java/*/target
pkg/resources/resources.go
# MAC OS files
.DS_Store