-
Notifications
You must be signed in to change notification settings - Fork 25
/
.gitignore
103 lines (83 loc) · 1.61 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
# ignore dolphin temp file
*.directory
# ignore eclipse-specifics
.settings
.classpath
.project
# ignore intellij-specifics
*.iml
*.ipr
*.iws
projectFilesBackup
.idea
.slcache/
# ignore sublime-specifics
*.sublime-project
*.sublime-workspace
# ignore build folders 'n results
*.class
bin/
build/
target*/
classes/
out/
web-app/WEB-INF/classes/
# ignore temp files of common text editors
*~
*.orig
# ignore .gradle
.gradle/
# ignore .groovy
.groovy/
# ignore log files
*.log
logs/
*.lnk
src/java/logging.properties
# misc
testorder*.txt
src/test/resources/**/private_*
# ignore h2 dumps
*.h2.gzip
testDb*
#ignore dataSource-Config
OpenSpeedMonitor-config.groovy
# ignore npm build files
node_modules/
.asscache
grails-app/assets/javascripts/frontend/
grails-app/assets/stylesheets/frontend/
grails-app/assets/other/frontend
grails-app/assets/javascripts/lib/
grails-app/assets/stylesheets/lib/
# the bootstrap.js was not created by the plugin
!grails-app/assets/javascripts/lib/bootstrap/bootstrap.js
# ci/bamboo specifics
version.properties
# local scripts
scripts/local/
# bower build files (deprecated)
bower_components/
.bowerrc
# local docker tests
docker/local_*
# frontend compiled output
frontend/dist
frontend/tmp
frontend/out-tsc
# frontend dependencies
frontend/node_modules
# frontend misc
frontend/.sass-cache
frontend/connect.lock
frontend/coverage
frontend/libpeerconnection.log
frontend/npm-debug.log
frontend/yarn-error.log
frontend/testem.log
frontend/typings
# frontend System Files
frontend/.DS_Store
frontend/Thumbs.db
# frontends i18n files (get generated automatically)
src/main/resources/public/i18n/*.json