Skip to content

Commit ef94d84

Browse files
author
krystian.panek
committed
Initial commit
0 parents  commit ef94d84

16 files changed

+1492
-0
lines changed

.gitattributes

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# Handle line endings automatically for files detected as text
2+
# and leave all files detected as binary untouched.
3+
* text=auto
4+
5+
# The above will handle all files NOT found below
6+
#
7+
# These files are text and should be normalized (Convert crlf => lf)
8+
*.css text
9+
*.df text
10+
*.htm text
11+
*.html text
12+
*.java text
13+
*.kt text
14+
*.js text
15+
*.json text
16+
*.jsp text
17+
*.jspf text
18+
*.jspx text
19+
*.properties text
20+
*.sh text
21+
*.tld text
22+
*.txt text
23+
*.tag text
24+
*.tagx text
25+
*.xml text
26+
*.yml text
27+
28+
# These files are binary and should be left untouched
29+
# (binary is a macro for -text -diff)
30+
*.class binary
31+
*.dll binary
32+
*.ear binary
33+
*.gif binary
34+
*.ico binary
35+
*.jar binary
36+
*.jpg binary
37+
*.jpeg binary
38+
*.png binary
39+
*.so binary
40+
*.war binary

.gitignore

+190
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,190 @@
1+
### Project specific
2+
.idea/
3+
*.iml
4+
*.ipr
5+
classes/
6+
7+
### Linux template
8+
*~
9+
10+
# temporary files which can be created if a process still has a handle open of a deleted file
11+
.fuse_hidden*
12+
13+
# KDE directory preferences
14+
.directory
15+
16+
# Linux trash folder which might appear on any partition or disk
17+
.Trash-*
18+
19+
# .nfs files are created when an open file is removed but is still being accessed
20+
.nfs*
21+
### Windows template
22+
# Windows thumbnail cache files
23+
Thumbs.db
24+
ehthumbs.db
25+
ehthumbs_vista.db
26+
27+
# Folder config file
28+
Desktop.ini
29+
30+
# Recycle Bin used on file shares
31+
$RECYCLE.BIN/
32+
33+
# Windows Installer files
34+
*.cab
35+
*.msi
36+
*.msm
37+
*.msp
38+
39+
# Windows shortcuts
40+
*.lnk
41+
### Gradle template
42+
.gradle
43+
/build/
44+
45+
# Ignore Gradle GUI config
46+
gradle-app.setting
47+
48+
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
49+
!gradle-wrapper.jar
50+
51+
# Cache of project
52+
.gradletasknamecache
53+
54+
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
55+
# gradle/wrapper/gradle-wrapper.properties
56+
### Eclipse template
57+
58+
.metadata
59+
bin/
60+
tmp/
61+
*.tmp
62+
*.bak
63+
*.swp
64+
*~.nib
65+
local.properties
66+
.settings/
67+
.loadpath
68+
.recommenders
69+
70+
# Eclipse Core
71+
.project
72+
73+
# External tool builders
74+
.externalToolBuilders/
75+
76+
# Locally stored "Eclipse launch configurations"
77+
*.launch
78+
79+
# PyDev specific (Python IDE for Eclipse)
80+
*.pydevproject
81+
82+
# CDT-specific (C/C++ Development Tooling)
83+
.cproject
84+
85+
# JDT-specific (Eclipse Java Development Tools)
86+
.classpath
87+
88+
# Java annotation processor (APT)
89+
.factorypath
90+
91+
# PDT-specific (PHP Development Tools)
92+
.buildpath
93+
94+
# sbteclipse plugin
95+
.target
96+
97+
# Tern plugin
98+
.tern-project
99+
100+
# TeXlipse plugin
101+
.texlipse
102+
103+
# STS (Spring Tool Suite)
104+
.springBeans
105+
106+
# Code Recommenders
107+
.recommenders/
108+
109+
# Scala IDE specific (Scala & Java development for Eclipse)
110+
.cache-main
111+
.scala_dependencies
112+
.worksheet
113+
### JetBrains template
114+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
115+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
116+
117+
# User-specific stuff:
118+
.idea/**/workspace.xml
119+
.idea/**/tasks.xml
120+
.idea/dictionaries
121+
122+
# Sensitive or high-churn files:
123+
.idea/**/dataSources/
124+
.idea/**/dataSources.ids
125+
.idea/**/dataSources.xml
126+
.idea/**/dataSources.local.xml
127+
.idea/**/sqlDataSources.xml
128+
.idea/**/dynamic.xml
129+
.idea/**/uiDesigner.xml
130+
131+
# Gradle:
132+
.idea/**/gradle.xml
133+
.idea/**/libraries
134+
135+
# Mongo Explorer plugin:
136+
.idea/**/mongoSettings.xml
137+
138+
## File-based project format:
139+
*.iws
140+
141+
## Plugin-specific files:
142+
143+
# IntelliJ
144+
/out/
145+
146+
# mpeltonen/sbt-idea plugin
147+
.idea_modules/
148+
149+
# JIRA plugin
150+
atlassian-ide-plugin.xml
151+
152+
# Crashlytics plugin (for Android Studio and IntelliJ)
153+
com_crashlytics_export_strings.xml
154+
crashlytics.properties
155+
crashlytics-build.properties
156+
fabric.properties
157+
### macOS template
158+
*.DS_Store
159+
.AppleDouble
160+
.LSOverride
161+
162+
# Icon must end with two \r
163+
Icon
164+
165+
166+
# Thumbnails
167+
._*
168+
169+
# Files that might appear in the root of a volume
170+
.DocumentRevisions-V100
171+
.fseventsd
172+
.Spotlight-V100
173+
.TemporaryItems
174+
.Trashes
175+
.VolumeIcon.icns
176+
.com.apple.timemachine.donotpresent
177+
178+
# Directories potentially created on remote AFP share
179+
.AppleDB
180+
.AppleDesktop
181+
Network Trash Folder
182+
Temporary Items
183+
.apdisk
184+
### NetBeans template
185+
nbproject/private/
186+
build/
187+
nbbuild/
188+
dist/
189+
nbdist/
190+
.nb-gradle/

0 commit comments

Comments
 (0)