Skip to content

Commit 2b7188f

Browse files
committed
add to Git
0 parents  commit 2b7188f

File tree

16 files changed

+1897
-0
lines changed

16 files changed

+1897
-0
lines changed

.gitattributes

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Auto detect text files and perform LF normalization
2+
* text=auto
3+
4+
# Custom for Visual Studio
5+
*.cs diff=csharp
6+
7+
# Standard to msysgit
8+
*.doc diff=astextplain
9+
*.DOC diff=astextplain
10+
*.docx diff=astextplain
11+
*.DOCX diff=astextplain
12+
*.dot diff=astextplain
13+
*.DOT diff=astextplain
14+
*.pdf diff=astextplain
15+
*.PDF diff=astextplain
16+
*.rtf diff=astextplain
17+
*.RTF diff=astextplain

.gitignore

Lines changed: 95 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
1+
#dist in Client
2+
client/dist
3+
4+
node_modules
5+
6+
# Logs
7+
logs
8+
*.log
9+
npm-debug.log*
10+
11+
# Runtime data
12+
pids
13+
*.pid
14+
*.seed
15+
16+
# Directory for instrumented libs generated by jscoverage/JSCover
17+
lib-cov
18+
19+
# Coverage directory used by tools like istanbul
20+
coverage
21+
22+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
23+
.grunt
24+
25+
# node-waf configuration
26+
.lock-wscript
27+
28+
# Compiled binary addons (http://nodejs.org/api/addons.html)
29+
build/Release
30+
31+
# Dependency directories
32+
node_modules
33+
jspm_packages
34+
35+
# Optional npm cache directory
36+
.npm
37+
38+
# Optional REPL history
39+
.node_repl_history
40+
41+
# =========================
42+
# Operating System Files
43+
# =========================
44+
45+
# OSX
46+
# =========================
47+
48+
.DS_Store
49+
.AppleDouble
50+
.LSOverride
51+
52+
# Thumbnails
53+
._*
54+
55+
# Files that might appear in the root of a volume
56+
.DocumentRevisions-V100
57+
.fseventsd
58+
.Spotlight-V100
59+
.TemporaryItems
60+
.Trashes
61+
.VolumeIcon.icns
62+
63+
# Directories potentially created on remote AFP share
64+
.AppleDB
65+
.AppleDesktop
66+
Network Trash Folder
67+
Temporary Items
68+
.apdisk
69+
70+
# Windows
71+
# =========================
72+
73+
# Windows image file caches
74+
Thumbs.db
75+
ehthumbs.db
76+
77+
# Folder config file
78+
Desktop.ini
79+
80+
# Recycle Bin used on file shares
81+
$RECYCLE.BIN/
82+
83+
# Windows Installer files
84+
*.cab
85+
*.msi
86+
*.msm
87+
*.msp
88+
89+
# Windows shortcuts
90+
*.lnk
91+
client/src/views/LetterContainer.vue
92+
rethink-db/dinosaurus/dinosaurus/efabbcdf-9c30-4a0e-9e37-204826d3da29
93+
rethink-db/tiger/rethinkdb_data/metadata
94+
rethink-db/tiger/rethinkdb_data/log_file
95+
rethink-db/panther/rethinkdb_data/efabbcdf-9c30-4a0e-9e37-204826d3da29

0 commit comments

Comments
 (0)