Skip to content

Commit 52ef619

Browse files
committed
Initial ReadMe and repository configuration
1 parent d5316a5 commit 52ef619

File tree

3 files changed

+1429
-0
lines changed

3 files changed

+1429
-0
lines changed

.gitattributes

Lines changed: 298 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,298 @@
1+
############
2+
## Common ##
3+
############
4+
5+
# Auto detect text files and perform LF normalization
6+
# http://davidlaing.com/2012/09/19/customise-your-gitattributes-to-become-a-git-ninja/
7+
* text=auto
8+
9+
# Documents
10+
*.doc diff=astextplain
11+
*.DOC diff=astextplain
12+
*.docx diff=astextplain
13+
*.DOCX diff=astextplain
14+
*.dot diff=astextplain
15+
*.DOT diff=astextplain
16+
*.pdf diff=astextplain
17+
*.PDF diff=astextplain
18+
*.rtf diff=astextplain
19+
*.RTF diff=astextplain
20+
21+
*.md text
22+
*.adoc text
23+
*.textile text
24+
*.mustache text
25+
*.csv text
26+
*.tab text
27+
*.tsv text
28+
*.sql text
29+
30+
# Graphics
31+
*.png binary
32+
*.jpg binary
33+
*.jpeg binary
34+
*.gif binary
35+
*.tif binary
36+
*.tiff binary
37+
*.ico binary
38+
*.svg binary
39+
*.eps binary
40+
41+
42+
###################
43+
## Visual Studio ##
44+
###################
45+
46+
###############################################################################
47+
# Set the merge driver for project and solution files
48+
#
49+
# Merging from the command prompt will add diff markers to the files if there
50+
# are conflicts (Merging from VS is not affected by the settings below, in VS
51+
# the diff markers are never inserted). Diff markers may cause the following
52+
# file extensions to fail to load in VS. An alternative would be to treat
53+
# these files as binary and thus will always conflict and require user
54+
# intervention with every merge. To do so, just comment the entries below and
55+
# uncomment the group further below
56+
###############################################################################
57+
58+
*.sln text eol=crlf
59+
*.csproj text eol=crlf
60+
*.vbproj text eol=crlf
61+
*.vcxproj text eol=crlf
62+
*.vcproj text eol=crlf
63+
*.dbproj text eol=crlf
64+
*.fsproj text eol=crlf
65+
*.lsproj text eol=crlf
66+
*.wixproj text eol=crlf
67+
*.modelproj text eol=crlf
68+
*.sqlproj text eol=crlf
69+
*.wmaproj text eol=crlf
70+
71+
*.xproj text eol=crlf
72+
*.props text eol=crlf
73+
*.filters text eol=crlf
74+
*.vcxitems text eol=crlf
75+
76+
*.cs diff=csharp
77+
78+
#################
79+
## General Web ##
80+
#################
81+
82+
## GITATTRIBUTES FOR WEB PROJECTS
83+
#
84+
# These settings are for any web project.
85+
#
86+
# Details per file setting:
87+
# text These files should be normalized (i.e. convert CRLF to LF).
88+
# binary These files are binary and should be left untouched.
89+
#
90+
# Note that binary is a macro for -text -diff.
91+
######################################################################
92+
93+
## SOURCE CODE
94+
*.bat text eol=crlf
95+
*.coffee text
96+
*.css text
97+
*.htm text
98+
*.html text
99+
*.inc text
100+
*.ini text
101+
*.js text
102+
*.json text
103+
*.jsx text
104+
*.less text
105+
*.od text
106+
*.onlydata text
107+
*.php text
108+
*.pl text
109+
*.py text
110+
*.rb text
111+
*.sass text
112+
*.scm text
113+
*.scss text
114+
*.sh text eol=lf
115+
*.sql text
116+
*.styl text
117+
*.tag text
118+
*.ts text
119+
*.tsx text
120+
*.xml text
121+
*.xhtml text
122+
123+
## DOCKER
124+
*.dockerignore text
125+
Dockerfile text
126+
127+
## DOCUMENTATION
128+
*.markdown text
129+
*.md text
130+
*.mdwn text
131+
*.mdown text
132+
*.mkd text
133+
*.mkdn text
134+
*.mdtxt text
135+
*.mdtext text
136+
*.txt text
137+
AUTHORS text
138+
CHANGELOG text
139+
CHANGES text
140+
CONTRIBUTING text
141+
COPYING text
142+
copyright text
143+
*COPYRIGHT* text
144+
INSTALL text
145+
license text
146+
LICENSE text
147+
NEWS text
148+
readme text
149+
*README* text
150+
TODO text
151+
152+
## TEMPLATES
153+
*.dot text
154+
*.ejs text
155+
*.haml text
156+
*.handlebars text
157+
*.hbs text
158+
*.hbt text
159+
*.jade text
160+
*.latte text
161+
*.mustache text
162+
*.njk text
163+
*.phtml text
164+
*.tmpl text
165+
*.tpl text
166+
*.twig text
167+
168+
## LINTERS
169+
.csslintrc text
170+
.eslintrc text
171+
.htmlhintrc text
172+
.jscsrc text
173+
.jshintrc text
174+
.jshintignore text
175+
.stylelintrc text
176+
177+
## CONFIGS
178+
*.bowerrc text
179+
*.cnf text
180+
*.conf text
181+
*.config text
182+
.browserslistrc text
183+
.editorconfig text
184+
.gitattributes text
185+
.gitconfig text
186+
.htaccess text
187+
*.npmignore text
188+
*.yaml text
189+
*.yml text
190+
browserslist text
191+
Makefile text
192+
makefile text
193+
194+
## HEROKU
195+
Procfile text
196+
.slugignore text
197+
198+
## GRAPHICS
199+
*.ai binary
200+
*.bmp binary
201+
*.eps binary
202+
*.gif binary
203+
*.ico binary
204+
*.jng binary
205+
*.jp2 binary
206+
*.jpg binary
207+
*.jpeg binary
208+
*.jpx binary
209+
*.jxr binary
210+
*.pdf binary
211+
*.png binary
212+
*.psb binary
213+
*.psd binary
214+
*.svg text
215+
*.svgz binary
216+
*.tif binary
217+
*.tiff binary
218+
*.wbmp binary
219+
*.webp binary
220+
221+
## AUDIO
222+
*.kar binary
223+
*.m4a binary
224+
*.mid binary
225+
*.midi binary
226+
*.mp3 binary
227+
*.ogg binary
228+
*.ra binary
229+
230+
## VIDEO
231+
*.3gpp binary
232+
*.3gp binary
233+
*.as binary
234+
*.asf binary
235+
*.asx binary
236+
*.fla binary
237+
*.flv binary
238+
*.m4v binary
239+
*.mng binary
240+
*.mov binary
241+
*.mp4 binary
242+
*.mpeg binary
243+
*.mpg binary
244+
*.ogv binary
245+
*.swc binary
246+
*.swf binary
247+
*.webm binary
248+
249+
## ARCHIVES
250+
*.7z binary
251+
*.gz binary
252+
*.jar binary
253+
*.rar binary
254+
*.tar binary
255+
*.zip binary
256+
257+
## FONTS
258+
*.ttf binary
259+
*.eot binary
260+
*.otf binary
261+
*.woff binary
262+
*.woff2 binary
263+
264+
## EXECUTABLES
265+
*.exe binary
266+
*.pyc binary
267+
268+
##########
269+
# Python #
270+
##########
271+
272+
# Source files
273+
# ============
274+
*.pxd text
275+
*.py text
276+
*.py3 text
277+
*.pyw text
278+
*.pyx text
279+
280+
# Binary files
281+
# ============
282+
*.db binary
283+
*.p binary
284+
*.pkl binary
285+
*.pyc binary
286+
*.pyd binary
287+
*.pyo binary
288+
289+
# Note: .db, .p, and .pkl files are associated
290+
# with the python modules ``pickle``, ``dbm.*``,
291+
# ``shelve``, ``marshal``, ``anydbm``, & ``bsddb``
292+
# (among others).
293+
294+
#########
295+
# Rails #
296+
#########
297+
298+
schema.rb merge=ours

0 commit comments

Comments
 (0)