-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
121 lines (102 loc) · 1.69 KB
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
### IGNORE FILES FROM GIT ###
### SYSTEMS FILES ###
.apdisk
.AppleDB
.AppleDesktop
.AppleDouble
.com.apple.timemachine.donotpresent
.directory
.DocumentRevisions-V100
.fseventsd
.fuse_hidden*
.LSOverride
.nfs*
.Spotlight-V100
.TemporaryItems
.Trash-*
.Trashes
.VolumeIcon.icns
*._*
*.DS_STORE
*~
Icon
Network Trash Folder
tags
Temporary Items
Thumbs.db
### IDE CONFIGS
.c9/
.cache
.cache
.classpath
.idea_modules/
.idea/
.netrwhist
.project
.settings/
.tmproj/
.vscode/
.vscode/
*.launch
*.sublime-workspace
atlassian-ide-plugin.xml
### COMMON PROJECT FILES ###
## dump director-y-ies
# this allows to create directories
# at the root of the project directory
# prefixed with an underscore (_)
# without committing them
/_*
## design files
**.ai
**.indd
**.psd
**.sketch
## logs
**.log
## compressed assets
**.rar
**.tgz
**.zip
## environment files
# example file should be allowed
# other patterns, such as .env.prod, should be disallowed
.env*
!.env.example
## modules
bower_components
jspm_packages
node_modules
typings
# yarn should be used instead
package-lock.json
# configs etc.
.eslintcache
.grunt
.jshintrc
.netlify
.npm
.yarn-integrity
# output directories, etc.
/bin
/build
/coverage
/dist
/out
/temp
/tmp
### PROJECT-SPECIFIC FILES BELOW ###
/data
/public/uploads
/public/apos-minified
/data/temp/uploadfs
# This folder is created on the fly and contains symlinks updated at startup (we'll come up with a Windows solution that actually copies things)
/public/modules
# We don't commit CSS, only LESS
/public/css/*.css
/public/css/*.map
# Don't commit masters generated on the fly at startup, these import all the rest
/public/css/master-*.less
.jshintrc
/public/js/_site-compiled.js
/public/api