Skip to content

Commit 608074e

Browse files
committed
Added ignore files.
1 parent 2bc067d commit 608074e

File tree

2 files changed

+48
-4
lines changed

2 files changed

+48
-4
lines changed

.dockerignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
*
2+
!target/*-runner
3+
!target/*-runner.jar
4+
!target/lib/*
5+
!target/quarkus-app/*

.gitignore

Lines changed: 43 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,46 @@
1-
/.idea/
2-
/**/*.class
3-
/**/target/*
4-
/**/*.iml
51
/kubernetes-basics/kubernetes-setup/.vagrant
62
/kubernetes-basics/kubernetes-setup/kubeconf
73
/**/join-command
4+
5+
6+
# Eclipse
7+
.project
8+
.classpath
9+
.settings/
10+
bin/
11+
12+
# IntelliJ
13+
.idea
14+
*.ipr
15+
*.iml
16+
*.iws
17+
/.idea/
18+
/**/*.iml
19+
20+
21+
# NetBeans
22+
nb-configuration.xml
23+
24+
# Visual Studio Code
25+
.vscode
26+
.factorypath
27+
28+
# OSX
29+
.DS_Store
30+
31+
# Vim
32+
*.swp
33+
*.swo
34+
35+
# patch
36+
*.orig
37+
*.rej
38+
39+
# Maven
40+
target/
41+
pom.xml.tag
42+
pom.xml.releaseBackup
43+
pom.xml.versionsBackup
44+
release.properties
45+
/**/target/*
46+
/**/*.class

0 commit comments

Comments
 (0)