|
@@ -0,0 +1,397 @@
|
|
1
|
+.idea
|
|
2
|
+.idea/
|
|
3
|
+.DS_Store
|
|
4
|
+node_modules/
|
|
5
|
+.project
|
|
6
|
+dist
|
|
7
|
+dist/*
|
|
8
|
+src/config/*.tmp
|
|
9
|
+src/config/env.js
|
|
10
|
+npm-debug.log
|
|
11
|
+# Created by https://www.gitignore.io/api/xcode,git,gradle,intellij,jetbrains,osx,maven,windows,java,node,intellij+iml,macos
|
|
12
|
+
|
|
13
|
+### Git ###
|
|
14
|
+*.orig
|
|
15
|
+
|
|
16
|
+### Intellij ###
|
|
17
|
+# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
|
|
18
|
+# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
|
|
19
|
+
|
|
20
|
+# User-specific stuff:
|
|
21
|
+.idea/**/workspace.xml
|
|
22
|
+.idea/**/tasks.xml
|
|
23
|
+.idea/dictionaries
|
|
24
|
+
|
|
25
|
+# Sensitive or high-churn files:
|
|
26
|
+.idea/**/dataSources/
|
|
27
|
+.idea/**/dataSources.ids
|
|
28
|
+.idea/**/dataSources.xml
|
|
29
|
+.idea/**/dataSources.local.xml
|
|
30
|
+.idea/**/sqlDataSources.xml
|
|
31
|
+.idea/**/dynamic.xml
|
|
32
|
+.idea/**/uiDesigner.xml
|
|
33
|
+
|
|
34
|
+# Gradle:
|
|
35
|
+.idea/**/gradle.xml
|
|
36
|
+.idea/**/libraries
|
|
37
|
+
|
|
38
|
+# CMake
|
|
39
|
+cmake-build-debug/
|
|
40
|
+
|
|
41
|
+# Mongo Explorer plugin:
|
|
42
|
+.idea/**/mongoSettings.xml
|
|
43
|
+
|
|
44
|
+## File-based project format:
|
|
45
|
+*.iws
|
|
46
|
+
|
|
47
|
+## Plugin-specific files:
|
|
48
|
+
|
|
49
|
+# IntelliJ
|
|
50
|
+/out/
|
|
51
|
+
|
|
52
|
+# mpeltonen/sbt-idea plugin
|
|
53
|
+.idea_modules/
|
|
54
|
+
|
|
55
|
+# JIRA plugin
|
|
56
|
+atlassian-ide-plugin.xml
|
|
57
|
+
|
|
58
|
+# Cursive Clojure plugin
|
|
59
|
+.idea/replstate.xml
|
|
60
|
+
|
|
61
|
+# Crashlytics plugin (for Android Studio and IntelliJ)
|
|
62
|
+com_crashlytics_export_strings.xml
|
|
63
|
+crashlytics.properties
|
|
64
|
+crashlytics-build.properties
|
|
65
|
+fabric.properties
|
|
66
|
+
|
|
67
|
+### Intellij Patch ###
|
|
68
|
+# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
|
|
69
|
+
|
|
70
|
+# *.iml
|
|
71
|
+# modules.xml
|
|
72
|
+# .idea/misc.xml
|
|
73
|
+# *.ipr
|
|
74
|
+
|
|
75
|
+# Sonarlint plugin
|
|
76
|
+.idea/sonarlint
|
|
77
|
+
|
|
78
|
+### Intellij+iml ###
|
|
79
|
+# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
|
|
80
|
+# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
|
|
81
|
+
|
|
82
|
+# User-specific stuff:
|
|
83
|
+
|
|
84
|
+# Sensitive or high-churn files:
|
|
85
|
+
|
|
86
|
+# Gradle:
|
|
87
|
+
|
|
88
|
+# CMake
|
|
89
|
+
|
|
90
|
+# Mongo Explorer plugin:
|
|
91
|
+
|
|
92
|
+## File-based project format:
|
|
93
|
+
|
|
94
|
+## Plugin-specific files:
|
|
95
|
+
|
|
96
|
+# IntelliJ
|
|
97
|
+
|
|
98
|
+# mpeltonen/sbt-idea plugin
|
|
99
|
+
|
|
100
|
+# JIRA plugin
|
|
101
|
+
|
|
102
|
+# Cursive Clojure plugin
|
|
103
|
+
|
|
104
|
+# Crashlytics plugin (for Android Studio and IntelliJ)
|
|
105
|
+
|
|
106
|
+### Intellij+iml Patch ###
|
|
107
|
+# Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-249601023
|
|
108
|
+
|
|
109
|
+*.iml
|
|
110
|
+modules.xml
|
|
111
|
+.idea/misc.xml
|
|
112
|
+*.ipr
|
|
113
|
+.idea
|
|
114
|
+.idea/
|
|
115
|
+
|
|
116
|
+### Java ###
|
|
117
|
+# Compiled class file
|
|
118
|
+*.class
|
|
119
|
+
|
|
120
|
+# Log file
|
|
121
|
+*.log
|
|
122
|
+
|
|
123
|
+# BlueJ files
|
|
124
|
+*.ctxt
|
|
125
|
+
|
|
126
|
+# Mobile Tools for Java (J2ME)
|
|
127
|
+.mtj.tmp/
|
|
128
|
+
|
|
129
|
+# Package Files #
|
|
130
|
+*.jar
|
|
131
|
+*.war
|
|
132
|
+*.ear
|
|
133
|
+*.zip
|
|
134
|
+*.tar.gz
|
|
135
|
+*.rar
|
|
136
|
+
|
|
137
|
+# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
|
|
138
|
+hs_err_pid*
|
|
139
|
+
|
|
140
|
+### JetBrains ###
|
|
141
|
+# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
|
|
142
|
+# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
|
|
143
|
+
|
|
144
|
+# User-specific stuff:
|
|
145
|
+
|
|
146
|
+# Sensitive or high-churn files:
|
|
147
|
+
|
|
148
|
+# Gradle:
|
|
149
|
+
|
|
150
|
+# CMake
|
|
151
|
+
|
|
152
|
+# Mongo Explorer plugin:
|
|
153
|
+
|
|
154
|
+## File-based project format:
|
|
155
|
+
|
|
156
|
+## Plugin-specific files:
|
|
157
|
+
|
|
158
|
+# IntelliJ
|
|
159
|
+
|
|
160
|
+# mpeltonen/sbt-idea plugin
|
|
161
|
+
|
|
162
|
+# JIRA plugin
|
|
163
|
+
|
|
164
|
+# Cursive Clojure plugin
|
|
165
|
+
|
|
166
|
+# Crashlytics plugin (for Android Studio and IntelliJ)
|
|
167
|
+
|
|
168
|
+### JetBrains Patch ###
|
|
169
|
+# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
|
|
170
|
+
|
|
171
|
+# *.iml
|
|
172
|
+# modules.xml
|
|
173
|
+# .idea/misc.xml
|
|
174
|
+# *.ipr
|
|
175
|
+
|
|
176
|
+# Sonarlint plugin
|
|
177
|
+
|
|
178
|
+### macOS ###
|
|
179
|
+*.DS_Store
|
|
180
|
+.AppleDouble
|
|
181
|
+.LSOverride
|
|
182
|
+
|
|
183
|
+# Icon must end with two \r
|
|
184
|
+Icon
|
|
185
|
+
|
|
186
|
+# Thumbnails
|
|
187
|
+._*
|
|
188
|
+
|
|
189
|
+# Files that might appear in the root of a volume
|
|
190
|
+.DocumentRevisions-V100
|
|
191
|
+.fseventsd
|
|
192
|
+.Spotlight-V100
|
|
193
|
+.TemporaryItems
|
|
194
|
+.Trashes
|
|
195
|
+.VolumeIcon.icns
|
|
196
|
+.com.apple.timemachine.donotpresent
|
|
197
|
+
|
|
198
|
+# Directories potentially created on remote AFP share
|
|
199
|
+.AppleDB
|
|
200
|
+.AppleDesktop
|
|
201
|
+Network Trash Folder
|
|
202
|
+Temporary Items
|
|
203
|
+.apdisk
|
|
204
|
+
|
|
205
|
+### Maven ###
|
|
206
|
+target/
|
|
207
|
+pom.xml.tag
|
|
208
|
+pom.xml.releaseBackup
|
|
209
|
+pom.xml.versionsBackup
|
|
210
|
+pom.xml.next
|
|
211
|
+release.properties
|
|
212
|
+dependency-reduced-pom.xml
|
|
213
|
+buildNumber.properties
|
|
214
|
+.mvn/timing.properties
|
|
215
|
+
|
|
216
|
+# Avoid ignoring Maven wrapper jar file (.jar files are usually ignored)
|
|
217
|
+!/.mvn/wrapper/maven-wrapper.jar
|
|
218
|
+
|
|
219
|
+### Node ###
|
|
220
|
+# Logs
|
|
221
|
+logs
|
|
222
|
+npm-debug.log*
|
|
223
|
+yarn-debug.log*
|
|
224
|
+yarn-error.log*
|
|
225
|
+
|
|
226
|
+# Runtime data
|
|
227
|
+pids
|
|
228
|
+*.pid
|
|
229
|
+*.seed
|
|
230
|
+*.pid.lock
|
|
231
|
+
|
|
232
|
+# Directory for instrumented libs generated by jscoverage/JSCover
|
|
233
|
+lib-cov
|
|
234
|
+
|
|
235
|
+# Coverage directory used by tools like istanbul
|
|
236
|
+coverage
|
|
237
|
+
|
|
238
|
+# nyc test coverage
|
|
239
|
+.nyc_output
|
|
240
|
+
|
|
241
|
+# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
|
|
242
|
+.grunt
|
|
243
|
+
|
|
244
|
+# Bower dependency directory (https://bower.io/)
|
|
245
|
+bower_components
|
|
246
|
+
|
|
247
|
+# node-waf configuration
|
|
248
|
+.lock-wscript
|
|
249
|
+
|
|
250
|
+# Compiled binary addons (http://nodejs.org/api/addons.html)
|
|
251
|
+build/Release
|
|
252
|
+
|
|
253
|
+# Dependency directories
|
|
254
|
+node_modules/
|
|
255
|
+jspm_packages/
|
|
256
|
+
|
|
257
|
+# Typescript v1 declaration files
|
|
258
|
+typings/
|
|
259
|
+
|
|
260
|
+# Optional npm cache directory
|
|
261
|
+.npm
|
|
262
|
+
|
|
263
|
+# Optional eslint cache
|
|
264
|
+.eslintcache
|
|
265
|
+
|
|
266
|
+# Optional REPL history
|
|
267
|
+.node_repl_history
|
|
268
|
+
|
|
269
|
+# Output of 'npm pack'
|
|
270
|
+*.tgz
|
|
271
|
+
|
|
272
|
+# Yarn Integrity file
|
|
273
|
+.yarn-integrity
|
|
274
|
+
|
|
275
|
+# dotenv environment variables file
|
|
276
|
+.env
|
|
277
|
+
|
|
278
|
+
|
|
279
|
+### OSX ###
|
|
280
|
+
|
|
281
|
+# Icon must end with two \r
|
|
282
|
+
|
|
283
|
+# Thumbnails
|
|
284
|
+
|
|
285
|
+# Files that might appear in the root of a volume
|
|
286
|
+
|
|
287
|
+# Directories potentially created on remote AFP share
|
|
288
|
+
|
|
289
|
+### Windows ###
|
|
290
|
+# Windows thumbnail cache files
|
|
291
|
+Thumbs.db
|
|
292
|
+ehthumbs.db
|
|
293
|
+ehthumbs_vista.db
|
|
294
|
+
|
|
295
|
+# Folder config file
|
|
296
|
+Desktop.ini
|
|
297
|
+
|
|
298
|
+# Recycle Bin used on file shares
|
|
299
|
+$RECYCLE.BIN/
|
|
300
|
+
|
|
301
|
+# Windows Installer files
|
|
302
|
+*.cab
|
|
303
|
+*.msi
|
|
304
|
+*.msm
|
|
305
|
+*.msp
|
|
306
|
+
|
|
307
|
+# Windows shortcuts
|
|
308
|
+*.lnk
|
|
309
|
+
|
|
310
|
+### Xcode ###
|
|
311
|
+# Xcode
|
|
312
|
+#
|
|
313
|
+# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
|
|
314
|
+
|
|
315
|
+## Build generated
|
|
316
|
+build/
|
|
317
|
+DerivedData/
|
|
318
|
+
|
|
319
|
+## Various settings
|
|
320
|
+*.pbxuser
|
|
321
|
+!default.pbxuser
|
|
322
|
+*.mode1v3
|
|
323
|
+!default.mode1v3
|
|
324
|
+*.mode2v3
|
|
325
|
+!default.mode2v3
|
|
326
|
+*.perspectivev3
|
|
327
|
+!default.perspectivev3
|
|
328
|
+xcuserdata/
|
|
329
|
+
|
|
330
|
+## Other
|
|
331
|
+*.moved-aside
|
|
332
|
+*.xccheckout
|
|
333
|
+*.xcscmblueprint
|
|
334
|
+
|
|
335
|
+### Xcode Patch ###
|
|
336
|
+*.xcodeproj/*
|
|
337
|
+!*.xcodeproj/project.pbxproj
|
|
338
|
+!*.xcodeproj/xcshareddata/
|
|
339
|
+!*.xcworkspace/contents.xcworkspacedata
|
|
340
|
+/*.gcno
|
|
341
|
+
|
|
342
|
+### Gradle ###
|
|
343
|
+.gradle
|
|
344
|
+/build/
|
|
345
|
+
|
|
346
|
+# Ignore Gradle GUI config
|
|
347
|
+gradle-app.setting
|
|
348
|
+
|
|
349
|
+# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
|
|
350
|
+!gradle-wrapper.jar
|
|
351
|
+
|
|
352
|
+# Cache of project
|
|
353
|
+.gradletasknamecache
|
|
354
|
+
|
|
355
|
+# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
|
|
356
|
+# gradle/wrapper/gradle-wrapper.properties
|
|
357
|
+
|
|
358
|
+# End of https://www.gitignore.io/api/xcode,git,gradle,intellij,jetbrains,osx,maven,windows,java,node,intellij+iml,macos
|
|
359
|
+target/
|
|
360
|
+!.mvn/wrapper/maven-wrapper.jar
|
|
361
|
+
|
|
362
|
+### STS ###
|
|
363
|
+.apt_generated
|
|
364
|
+.classpath
|
|
365
|
+.factorypath
|
|
366
|
+.project
|
|
367
|
+.settings
|
|
368
|
+.springBeans
|
|
369
|
+
|
|
370
|
+### IntelliJ IDEA ###
|
|
371
|
+.idea
|
|
372
|
+*.iws
|
|
373
|
+*.iml
|
|
374
|
+*.ipr
|
|
375
|
+
|
|
376
|
+### NetBeans ###
|
|
377
|
+nbproject/private/
|
|
378
|
+build/
|
|
379
|
+nbbuild/
|
|
380
|
+dist/
|
|
381
|
+nbdist/
|
|
382
|
+.nb-gradle/
|
|
383
|
+
|
|
384
|
+node_modules/
|
|
385
|
+.project
|
|
386
|
+dist
|
|
387
|
+dist/*
|
|
388
|
+src/config/*.tmp
|
|
389
|
+src/config/env.js
|
|
390
|
+npm-debug.log
|
|
391
|
+
|
|
392
|
+_book/**
|
|
393
|
+*.pdb
|
|
394
|
+t-oa-docs/doc/_book/**
|
|
395
|
+t-oa/media/**
|
|
396
|
+/media
|
|
397
|
+*.csv
|