Skip to content

Commit 134f027

Browse files
committed
conf: Create .gitiginore
0 parents  commit 134f027

File tree

1 file changed

+203
-0
lines changed

1 file changed

+203
-0
lines changed

.gitignore

Lines changed: 203 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,203 @@
1+
HELP.md
2+
.gradle
3+
build/
4+
!gradle/wrapper/gradle-wrapper.jar
5+
!**/src/main/**/build/
6+
!**/src/test/**/build/
7+
8+
### STS ###
9+
.apt_generated
10+
.classpath
11+
.factorypath
12+
.project
13+
.settings
14+
.springBeans
15+
.sts4-cache
16+
bin/
17+
!**/src/main/**/bin/
18+
!**/src/test/**/bin/
19+
20+
### IntelliJ IDEA ###
21+
.idea
22+
*.iws
23+
*.iml
24+
*.ipr
25+
out/
26+
!**/src/main/**/out/
27+
!**/src/test/**/out/
28+
29+
### NetBeans ###
30+
/nbproject/private/
31+
/nbbuild/
32+
/dist/
33+
/nbdist/
34+
/.nb-gradle/
35+
36+
### VS Code ###
37+
.vscode/
38+
### Java template
39+
# Compiled class file
40+
*.class
41+
42+
# Log file
43+
*.log
44+
45+
# BlueJ files
46+
*.ctxt
47+
48+
# Mobile Tools for Java (J2ME)
49+
.mtj.tmp/
50+
51+
# Package Files #
52+
*.jar
53+
*.war
54+
*.nar
55+
*.ear
56+
*.zip
57+
*.tar.gz
58+
*.rar
59+
60+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
61+
hs_err_pid*
62+
63+
### Windows template
64+
# Windows thumbnail cache files
65+
Thumbs.db
66+
Thumbs.db:encryptable
67+
ehthumbs.db
68+
ehthumbs_vista.db
69+
70+
# Dump file
71+
*.stackdump
72+
73+
# Folder config file
74+
[Dd]esktop.ini
75+
76+
# Recycle Bin used on file shares
77+
$RECYCLE.BIN/
78+
79+
# Windows Installer files
80+
*.cab
81+
*.msi
82+
*.msix
83+
*.msm
84+
*.msp
85+
86+
# Windows shortcuts
87+
*.lnk
88+
89+
### Gradle template
90+
**/build/
91+
!src/**/build/
92+
93+
# Ignore Gradle GUI config
94+
gradle-app.setting
95+
96+
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
97+
!gradle-wrapper.jar
98+
99+
# Cache of project
100+
.gradletasknamecache
101+
102+
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
103+
# gradle/wrapper/gradle-wrapper.properties
104+
105+
### JetBrains template
106+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
107+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
108+
109+
# User-specific stuff
110+
.idea/**/workspace.xml
111+
.idea/**/tasks.xml
112+
.idea/**/usage.statistics.xml
113+
.idea/**/dictionaries
114+
.idea/**/shelf
115+
116+
# Generated files
117+
.idea/**/contentModel.xml
118+
119+
# Sensitive or high-churn files
120+
.idea/**/dataSources/
121+
.idea/**/dataSources.ids
122+
.idea/**/dataSources.local.xml
123+
.idea/**/sqlDataSources.xml
124+
.idea/**/dynamic.xml
125+
.idea/**/uiDesigner.xml
126+
.idea/**/dbnavigator.xml
127+
128+
# Gradle
129+
.idea/**/gradle.xml
130+
.idea/**/libraries
131+
132+
# Gradle and Maven with auto-import
133+
# When using Gradle or Maven with auto-import, you should exclude module files,
134+
# since they will be recreated, and may cause churn. Uncomment if using
135+
# auto-import.
136+
# .idea/artifacts
137+
# .idea/compiler.xml
138+
# .idea/jarRepositories.xml
139+
# .idea/modules.xml
140+
# .idea/*.iml
141+
# .idea/modules
142+
# *.iml
143+
# *.ipr
144+
145+
# CMake
146+
cmake-build-*/
147+
148+
# Mongo Explorer plugin
149+
.idea/**/mongoSettings.xml
150+
151+
152+
153+
# mpeltonen/sbt-idea plugin
154+
.idea_modules/
155+
156+
# JIRA plugin
157+
atlassian-ide-plugin.xml
158+
159+
# Cursive Clojure plugin
160+
.idea/replstate.xml
161+
162+
# Crashlytics plugin (for Android Studio and IntelliJ)
163+
com_crashlytics_export_strings.xml
164+
crashlytics.properties
165+
crashlytics-build.properties
166+
fabric.properties
167+
168+
# Editor-based Rest Client
169+
.idea/httpRequests
170+
171+
# Android studio 3.1+ serialized cache file
172+
.idea/caches/build_file_checksums.ser
173+
174+
### macOS template
175+
# General
176+
.DS_Store
177+
.AppleDouble
178+
.LSOverride
179+
180+
# Icon must end with two \r
181+
Icon
182+
183+
# Thumbnails
184+
._*
185+
186+
# Files that might appear in the root of a volume
187+
.DocumentRevisions-V100
188+
.fseventsd
189+
.Spotlight-V100
190+
.TemporaryItems
191+
.Trashes
192+
.VolumeIcon.icns
193+
.com.apple.timemachine.donotpresent
194+
195+
# Directories potentially created on remote AFP share
196+
.AppleDB
197+
.AppleDesktop
198+
Network Trash Folder
199+
Temporary Items
200+
.apdisk
201+
202+
### datasource
203+
#/src/main/resources/datasource.yml

0 commit comments

Comments
 (0)