Skip to content

Commit c23011e

Browse files
committed
Initial Commit
0 parents  commit c23011e

File tree

401 files changed

+47606
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

401 files changed

+47606
-0
lines changed

.gitignore

+134
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,134 @@
1+
2+
# Java ========================================================================
3+
4+
# Compiled class file
5+
*.class
6+
7+
# Log file
8+
*.log
9+
*.log.gz
10+
npm-debug.log*
11+
yarn-debug.log*
12+
yarn-error.log*
13+
pnpm-debug.log*
14+
15+
# BlueJ files
16+
*.ctxt
17+
18+
# Mobile Tools for Java (J2ME)
19+
.mtj.tmp/
20+
21+
# Package Files #
22+
*.jar
23+
*.war
24+
*.nar
25+
*.ear
26+
*.zip
27+
*.tar.gz
28+
*.rar
29+
30+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
31+
hs_err_pid*
32+
replay_pid*
33+
34+
# SVN
35+
.svn/
36+
37+
# IDE =========================================================================
38+
39+
.metadata
40+
bin/
41+
tmp/
42+
logs/
43+
target/
44+
*.tmp
45+
*.bak
46+
*.swp
47+
*~.nib
48+
local.properties
49+
.settings/
50+
.loadpath
51+
.recommenders
52+
53+
# local env files
54+
.env.local
55+
.env.*.local
56+
57+
# sbteclipse plugin
58+
.target
59+
60+
# STS (Spring Tool Suite)
61+
.springBeans
62+
63+
# Annotation Processing
64+
.apt_generated/
65+
.apt_generated_test/
66+
67+
# Scala IDE specific (Scala & Java development for Eclipse)
68+
.cache-main
69+
.scala_dependencies
70+
.worksheet
71+
72+
# Editor directories and files
73+
.project
74+
.classpath
75+
.factorypath
76+
77+
.idea
78+
.vscode
79+
*.suo
80+
*.ntvs*
81+
*.njsproj
82+
*.sln
83+
*.sw?
84+
85+
node
86+
node_modules
87+
/dist
88+
89+
# Windows =====================================================================
90+
91+
# Windows thumbnail cache files
92+
Thumbs.db
93+
94+
# Folder config file
95+
[Dd]esktop.ini
96+
97+
# Windows Installer files
98+
*.cab
99+
*.msi
100+
*.msix
101+
*.msm
102+
*.msp
103+
104+
# Windows shortcuts
105+
*.lnk
106+
107+
# macOS =====================================================================
108+
109+
# General
110+
.DS_Store
111+
.AppleDouble
112+
.LSOverride
113+
114+
# Icon must end with two \r
115+
Icon
116+
117+
# Thumbnails
118+
._*
119+
120+
# Files that might appear in the root of a volume
121+
.DocumentRevisions-V100
122+
.fseventsd
123+
.Spotlight-V100
124+
.TemporaryItems
125+
.Trashes
126+
.VolumeIcon.icns
127+
.com.apple.timemachine.donotpresent
128+
129+
# Directories potentially created on remote AFP share
130+
.AppleDB
131+
.AppleDesktop
132+
Network Trash Folder
133+
Temporary Items
134+
.apdisk

0 commit comments

Comments
 (0)