@bigid/apps-infrastructure-node-js 0.2.0 → 1.180.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/bigid_config +3 -0
- package/.github/workflows/npmjs_config +3 -0
- package/.github/workflows/{build-and-push.yml → private-registry-publish.yml} +5 -2
- package/.github/workflows/public-registry-publish.yml +17 -0
- package/CODEOWNERS +1 -0
- package/README.md +31 -2
- package/jsdoc.json +14 -0
- package/lib/abstractProviders/configureProvider.d.ts +10 -0
- package/lib/abstractProviders/configureProvider.js +19 -0
- package/lib/abstractProviders/index.d.ts +1 -0
- package/lib/abstractProviders/index.js +3 -1
- package/lib/abstractProviders/logsProvider.js +9 -1
- package/lib/abstractProviders/manifestProvider.d.ts +2 -1
- package/lib/dto/actionResponseDetails.d.ts +3 -1
- package/lib/dto/actionResponseDetails.js +2 -1
- package/lib/dto/executionContext.d.ts +8 -4
- package/lib/dto/index.d.ts +1 -1
- package/lib/dto/subExecutionItem.d.ts +7 -0
- package/lib/dto/subExecutionItem.js +12 -0
- package/lib/dto/tenantRegistration.d.ts +5 -0
- package/lib/dto/tenantRegistration.js +2 -0
- package/lib/index.d.ts +1 -1
- package/lib/index.js +16 -2
- package/lib/server.d.ts +10 -6
- package/lib/server.js +14 -9
- package/lib/services/actionsHubService.d.ts +45 -0
- package/lib/services/actionsHubService.js +105 -0
- package/lib/services/batchProcessManager.d.ts +2 -0
- package/lib/services/batchProcessManager.js +45 -0
- package/lib/services/bigidProxyService.d.ts +18 -2
- package/lib/services/bigidProxyService.js +34 -14
- package/lib/services/dataSourceService.d.ts +4 -0
- package/lib/services/dataSourceService.js +26 -0
- package/lib/services/encryptionService.d.ts +1 -0
- package/lib/services/encryptionService.js +67 -0
- package/lib/services/index.d.ts +3 -0
- package/lib/services/index.js +12 -1
- package/lib/services/schedulerService.d.ts +11 -0
- package/lib/services/schedulerService.js +41 -0
- package/lib/utils/appLogger.d.ts +10 -1
- package/lib/utils/appLogger.js +38 -7
- package/lib/utils/index.d.ts +1 -1
- package/lib/utils/index.js +15 -3
- package/lib/utils/tokenUtil.d.ts +3 -0
- package/lib/utils/tokenUtil.js +62 -0
- package/package.json +11 -4
- package/src/abstractProviders/configureProvider.ts +15 -0
- package/src/abstractProviders/index.ts +1 -0
- package/src/abstractProviders/logsProvider.ts +11 -3
- package/src/abstractProviders/manifestProvider.ts +3 -1
- package/src/dto/actionResponseDetails.ts +5 -1
- package/src/dto/executionContext.ts +9 -4
- package/src/dto/index.ts +2 -2
- package/src/dto/subExecutionItem.ts +13 -0
- package/src/dto/tenantRegistration.ts +5 -0
- package/src/index.ts +17 -1
- package/src/server.ts +33 -20
- package/src/services/actionsHubService.ts +141 -0
- package/src/services/batchProcessManager.ts +39 -0
- package/src/services/bigidProxyService.ts +48 -24
- package/src/services/dataSourceService.ts +20 -0
- package/src/services/encryptionService.ts +44 -0
- package/src/services/index.ts +5 -1
- package/src/services/schedulerService.ts +39 -0
- package/src/utils/appLogger.ts +44 -6
- package/src/utils/index.ts +1 -1
- package/src/utils/tokenUtil.ts +65 -0
- package/.dcignore +0 -1547
- package/.idea/apps-infrastructure-node-js.iml +0 -9
- package/.idea/misc.xml +0 -6
- package/.idea/modules.xml +0 -8
- package/.idea/prettier.xml +0 -7
- package/.idea/runConfigurations.xml +0 -10
- package/.idea/snyk.project.settings.xml +0 -6
- package/.idea/vcs.xml +0 -6
package/.dcignore
DELETED
|
@@ -1,1547 +0,0 @@
|
|
|
1
|
-
# Write glob rules for ignored files.
|
|
2
|
-
# Check syntax on https://deepcode.freshdesk.com/support/solutions/articles/60000531055-how-can-i-ignore-files-or-directories-
|
|
3
|
-
# Check examples on https://github.com/github/gitignore
|
|
4
|
-
|
|
5
|
-
# Hidden directories
|
|
6
|
-
.*/
|
|
7
|
-
|
|
8
|
-
# FuelPHP
|
|
9
|
-
/fuel/vendor
|
|
10
|
-
/docs/
|
|
11
|
-
/fuel/app/logs/*/*/*
|
|
12
|
-
/fuel/app/cache/*/*
|
|
13
|
-
|
|
14
|
-
# Godot
|
|
15
|
-
data_*/
|
|
16
|
-
|
|
17
|
-
# Lilypond
|
|
18
|
-
*~
|
|
19
|
-
|
|
20
|
-
# Nim
|
|
21
|
-
nimcache/
|
|
22
|
-
nimblecache/
|
|
23
|
-
htmldocs/
|
|
24
|
-
|
|
25
|
-
# Android
|
|
26
|
-
bin/
|
|
27
|
-
gen/
|
|
28
|
-
out/
|
|
29
|
-
build/
|
|
30
|
-
proguard/
|
|
31
|
-
captures/
|
|
32
|
-
freeline/
|
|
33
|
-
fastlane/screenshots
|
|
34
|
-
fastlane/test_output
|
|
35
|
-
lint/intermediates/
|
|
36
|
-
lint/generated/
|
|
37
|
-
lint/outputs/
|
|
38
|
-
lint/tmp/
|
|
39
|
-
|
|
40
|
-
# UnrealEngine
|
|
41
|
-
Binaries/*
|
|
42
|
-
Plugins/*/Binaries/*
|
|
43
|
-
Build/*
|
|
44
|
-
!Build/*/
|
|
45
|
-
Build/*/**
|
|
46
|
-
Saved/*
|
|
47
|
-
Intermediate/*
|
|
48
|
-
Plugins/*/Intermediate/*
|
|
49
|
-
DerivedDataCache/*
|
|
50
|
-
|
|
51
|
-
# Zephir
|
|
52
|
-
ext/build/
|
|
53
|
-
ext/modules/
|
|
54
|
-
ext/Makefile*
|
|
55
|
-
ext/config*
|
|
56
|
-
ext/autom4te*
|
|
57
|
-
ext/install-sh
|
|
58
|
-
ext/missing
|
|
59
|
-
ext/mkinstalldirs
|
|
60
|
-
ext/libtool
|
|
61
|
-
|
|
62
|
-
# Typo3
|
|
63
|
-
/fileadmin/user_upload/
|
|
64
|
-
/fileadmin/_temp_/
|
|
65
|
-
/fileadmin/_processed_/
|
|
66
|
-
/uploads/
|
|
67
|
-
/typo3conf/temp_CACHED*
|
|
68
|
-
/typo3conf/ENABLE_INSTALL_TOOL
|
|
69
|
-
/FIRST_INSTALL
|
|
70
|
-
/typo3
|
|
71
|
-
/Packages
|
|
72
|
-
/typo3temp/
|
|
73
|
-
|
|
74
|
-
# Actionscript
|
|
75
|
-
bin-debug/
|
|
76
|
-
bin-release/
|
|
77
|
-
[Oo]bj/
|
|
78
|
-
[Bb]in/
|
|
79
|
-
|
|
80
|
-
# WordPress
|
|
81
|
-
!wp-content/
|
|
82
|
-
wp-content/*
|
|
83
|
-
!wp-content/mu-plugins/
|
|
84
|
-
!wp-content/plugins/
|
|
85
|
-
!wp-content/themes/
|
|
86
|
-
wp-content/themes/twenty*/
|
|
87
|
-
node_modules/
|
|
88
|
-
|
|
89
|
-
# Lithium
|
|
90
|
-
libraries/*
|
|
91
|
-
resources/tmp/*
|
|
92
|
-
|
|
93
|
-
# Python
|
|
94
|
-
__pycache__/
|
|
95
|
-
build/
|
|
96
|
-
develop-eggs/
|
|
97
|
-
dist/
|
|
98
|
-
downloads/
|
|
99
|
-
eggs/
|
|
100
|
-
lib/
|
|
101
|
-
lib64/
|
|
102
|
-
parts/
|
|
103
|
-
sdist/
|
|
104
|
-
var/
|
|
105
|
-
wheels/
|
|
106
|
-
share/python-wheels/
|
|
107
|
-
*.egg-info/
|
|
108
|
-
MANIFEST
|
|
109
|
-
htmlcov/
|
|
110
|
-
cover/
|
|
111
|
-
instance/
|
|
112
|
-
docs/_build/
|
|
113
|
-
target/
|
|
114
|
-
profile_default/
|
|
115
|
-
__pypackages__/
|
|
116
|
-
celerybeat-schedule
|
|
117
|
-
env/
|
|
118
|
-
venv/
|
|
119
|
-
ENV/
|
|
120
|
-
env.bak/
|
|
121
|
-
venv.bak/
|
|
122
|
-
/site
|
|
123
|
-
cython_debug/
|
|
124
|
-
|
|
125
|
-
# VVVV
|
|
126
|
-
bin/
|
|
127
|
-
|
|
128
|
-
# CodeIgniter
|
|
129
|
-
*/config/development
|
|
130
|
-
*/cache/*
|
|
131
|
-
application/logs/*
|
|
132
|
-
/vendor/
|
|
133
|
-
|
|
134
|
-
# AppEngine
|
|
135
|
-
appengine-generated/
|
|
136
|
-
|
|
137
|
-
# Objective-C
|
|
138
|
-
xcuserdata/
|
|
139
|
-
build/
|
|
140
|
-
DerivedData/
|
|
141
|
-
Carthage/Build/
|
|
142
|
-
fastlane/test_output
|
|
143
|
-
iOSInjectionProject/
|
|
144
|
-
|
|
145
|
-
# GWT
|
|
146
|
-
war/gwt_bree/
|
|
147
|
-
gwt-unitCache/
|
|
148
|
-
war/WEB-INF/deploy/
|
|
149
|
-
war/WEB-INF/classes/
|
|
150
|
-
www-test/
|
|
151
|
-
|
|
152
|
-
# Delphi
|
|
153
|
-
__history/
|
|
154
|
-
__recovery/
|
|
155
|
-
modules/
|
|
156
|
-
|
|
157
|
-
# ROS
|
|
158
|
-
devel/
|
|
159
|
-
logs/
|
|
160
|
-
build/
|
|
161
|
-
bin/
|
|
162
|
-
lib/
|
|
163
|
-
msg_gen/
|
|
164
|
-
srv_gen/
|
|
165
|
-
build_isolated/
|
|
166
|
-
devel_isolated/
|
|
167
|
-
/cfg/cpp/
|
|
168
|
-
qtcreator-*
|
|
169
|
-
/planning/cfg
|
|
170
|
-
/planning/docs
|
|
171
|
-
*~
|
|
172
|
-
CATKIN_IGNORE
|
|
173
|
-
|
|
174
|
-
# Stella
|
|
175
|
-
obj/
|
|
176
|
-
|
|
177
|
-
# Jekyll
|
|
178
|
-
_site/
|
|
179
|
-
|
|
180
|
-
# MetaProgrammingSystem
|
|
181
|
-
classes_gen
|
|
182
|
-
source_gen
|
|
183
|
-
test_gen
|
|
184
|
-
|
|
185
|
-
# JENKINS_HOME
|
|
186
|
-
!/jobs
|
|
187
|
-
jobs/**
|
|
188
|
-
!jobs/**/
|
|
189
|
-
builds
|
|
190
|
-
indexing
|
|
191
|
-
jobs/**/*workspace
|
|
192
|
-
|
|
193
|
-
# Leiningen
|
|
194
|
-
/lib/
|
|
195
|
-
/classes/
|
|
196
|
-
/target/
|
|
197
|
-
/checkouts/
|
|
198
|
-
|
|
199
|
-
# Laravel
|
|
200
|
-
/vendor/
|
|
201
|
-
node_modules/
|
|
202
|
-
app/storage/
|
|
203
|
-
public/storage
|
|
204
|
-
public/hot
|
|
205
|
-
public_html/storage
|
|
206
|
-
public_html/hot
|
|
207
|
-
|
|
208
|
-
# R
|
|
209
|
-
/*.Rcheck/
|
|
210
|
-
*_cache/
|
|
211
|
-
/cache/
|
|
212
|
-
docs/
|
|
213
|
-
po/*~
|
|
214
|
-
|
|
215
|
-
# Processing
|
|
216
|
-
applet
|
|
217
|
-
out
|
|
218
|
-
|
|
219
|
-
# GitBook
|
|
220
|
-
node_modules
|
|
221
|
-
_book
|
|
222
|
-
|
|
223
|
-
# LemonStand
|
|
224
|
-
/config/*
|
|
225
|
-
/controllers/*
|
|
226
|
-
/init/*
|
|
227
|
-
/logs/*
|
|
228
|
-
/phproad/*
|
|
229
|
-
/temp/*
|
|
230
|
-
/uploaded/*
|
|
231
|
-
/installer_files/*
|
|
232
|
-
/modules/backend/*
|
|
233
|
-
/modules/blog/*
|
|
234
|
-
/modules/cms/*
|
|
235
|
-
/modules/core/*
|
|
236
|
-
/modules/session/*
|
|
237
|
-
/modules/shop/*
|
|
238
|
-
/modules/system/*
|
|
239
|
-
/modules/users/*
|
|
240
|
-
|
|
241
|
-
# ArchLinuxPackages
|
|
242
|
-
pkg/
|
|
243
|
-
|
|
244
|
-
# Swift
|
|
245
|
-
xcuserdata/
|
|
246
|
-
build/
|
|
247
|
-
DerivedData/
|
|
248
|
-
Carthage/Build/
|
|
249
|
-
Dependencies/
|
|
250
|
-
fastlane/test_output
|
|
251
|
-
iOSInjectionProject/
|
|
252
|
-
|
|
253
|
-
# Packer
|
|
254
|
-
packer_cache/
|
|
255
|
-
|
|
256
|
-
# Elixir
|
|
257
|
-
/_build
|
|
258
|
-
/cover
|
|
259
|
-
/deps
|
|
260
|
-
/doc
|
|
261
|
-
|
|
262
|
-
# Phalcon
|
|
263
|
-
/cache/
|
|
264
|
-
/config/development/
|
|
265
|
-
|
|
266
|
-
# Unity
|
|
267
|
-
/[Ll]ibrary/
|
|
268
|
-
/[Tt]emp/
|
|
269
|
-
/[Oo]bj/
|
|
270
|
-
/[Bb]uild/
|
|
271
|
-
/[Bb]uilds/
|
|
272
|
-
/[Ll]ogs/
|
|
273
|
-
/[Uu]ser[Ss]ettings/
|
|
274
|
-
/[Mm]emoryCaptures/
|
|
275
|
-
/[Aa]ssets/Plugins/Editor/JetBrains*
|
|
276
|
-
ExportedObj/
|
|
277
|
-
/[Aa]ssets/[Ss]treamingAssets/aa/*
|
|
278
|
-
|
|
279
|
-
# Scrivener
|
|
280
|
-
*/QuickLook/
|
|
281
|
-
|
|
282
|
-
# Kohana
|
|
283
|
-
application/cache/*
|
|
284
|
-
application/logs/*
|
|
285
|
-
|
|
286
|
-
# Prestashop
|
|
287
|
-
/cache/*
|
|
288
|
-
!/cache/push/activity
|
|
289
|
-
!/cache/push/trends
|
|
290
|
-
/download/*
|
|
291
|
-
/img/*
|
|
292
|
-
!/img/jquery-ui
|
|
293
|
-
!/img/scenes
|
|
294
|
-
/upload/*
|
|
295
|
-
/vendor/*
|
|
296
|
-
/docs/phpdoc-sf/
|
|
297
|
-
/admin-dev/autoupgrade/*
|
|
298
|
-
/admin-dev/backups/*
|
|
299
|
-
/admin-dev/import/*
|
|
300
|
-
/admin-dev/export/*
|
|
301
|
-
themes/*/cache/*
|
|
302
|
-
config/xml/*
|
|
303
|
-
config/themes/*
|
|
304
|
-
modules/*
|
|
305
|
-
override/*
|
|
306
|
-
themes/*/
|
|
307
|
-
!themes/classic
|
|
308
|
-
!themes/_core
|
|
309
|
-
!themes/_libraries
|
|
310
|
-
bower_components/
|
|
311
|
-
node_modules/
|
|
312
|
-
php-cs-fixer
|
|
313
|
-
translations/*
|
|
314
|
-
mails/*
|
|
315
|
-
!mails/themes/
|
|
316
|
-
!mails/_partials/
|
|
317
|
-
themes/default-bootstrap/lang/*
|
|
318
|
-
themes/default-bootstrap/mails/*
|
|
319
|
-
!themes/default-bootstrap/mails/en/
|
|
320
|
-
themes/default-bootstrap/modules/*/mails/*
|
|
321
|
-
!themes/default-bootstrap/modules/*/mails/en
|
|
322
|
-
/bin/
|
|
323
|
-
/app/Resources/translations/*
|
|
324
|
-
!/app/Resources/translations/default
|
|
325
|
-
/build/
|
|
326
|
-
/var/*
|
|
327
|
-
!/var/cache
|
|
328
|
-
/var/cache/*
|
|
329
|
-
!/var/logs
|
|
330
|
-
/var/logs/*
|
|
331
|
-
!/var/sessions
|
|
332
|
-
/var/sessions/*
|
|
333
|
-
/vendor/
|
|
334
|
-
/web/bundles/
|
|
335
|
-
|
|
336
|
-
# ExtJs
|
|
337
|
-
build/
|
|
338
|
-
ext/
|
|
339
|
-
|
|
340
|
-
# CMake
|
|
341
|
-
CMakeFiles
|
|
342
|
-
CMakeScripts
|
|
343
|
-
Testing
|
|
344
|
-
Makefile
|
|
345
|
-
_deps
|
|
346
|
-
|
|
347
|
-
# Umbraco
|
|
348
|
-
**/App_Data/Logs/
|
|
349
|
-
**/App_Data/[Pp]review/
|
|
350
|
-
**/App_Data/TEMP/
|
|
351
|
-
**/App_Data/NuGetBackup/
|
|
352
|
-
!**/App_Data/[Pp]ackages/*
|
|
353
|
-
!**/[Uu]mbraco/[Dd]eveloper/[Pp]ackages/*
|
|
354
|
-
!**/[Uu]mbraco/[Vv]iews/[Pp]ackages/*
|
|
355
|
-
**/App_Data/cache/
|
|
356
|
-
|
|
357
|
-
# CakePHP
|
|
358
|
-
/vendor/*
|
|
359
|
-
/tmp/cache/models/*
|
|
360
|
-
!/tmp/cache/models/empty
|
|
361
|
-
/tmp/cache/persistent/*
|
|
362
|
-
!/tmp/cache/persistent/empty
|
|
363
|
-
/tmp/cache/views/*
|
|
364
|
-
!/tmp/cache/views/empty
|
|
365
|
-
/tmp/sessions/*
|
|
366
|
-
!/tmp/sessions/empty
|
|
367
|
-
/tmp/tests/*
|
|
368
|
-
!/tmp/tests/empty
|
|
369
|
-
/logs/*
|
|
370
|
-
!/logs/empty
|
|
371
|
-
/app/tmp/*
|
|
372
|
-
/vendors/*
|
|
373
|
-
|
|
374
|
-
# Java
|
|
375
|
-
hs_err_pid*
|
|
376
|
-
|
|
377
|
-
# Symfony
|
|
378
|
-
/app/cache/*
|
|
379
|
-
/app/logs/*
|
|
380
|
-
/app/spool/*
|
|
381
|
-
/var/cache/*
|
|
382
|
-
/var/logs/*
|
|
383
|
-
/var/sessions/*
|
|
384
|
-
/var/log/*
|
|
385
|
-
/bin/*
|
|
386
|
-
!bin/console
|
|
387
|
-
!bin/symfony_requirements
|
|
388
|
-
/vendor/
|
|
389
|
-
/web/bundles/
|
|
390
|
-
/web/uploads/
|
|
391
|
-
/build/
|
|
392
|
-
**/Entity/*~
|
|
393
|
-
|
|
394
|
-
# Composer
|
|
395
|
-
/vendor/
|
|
396
|
-
|
|
397
|
-
# SymphonyCMS
|
|
398
|
-
manifest/cache/
|
|
399
|
-
manifest/logs/
|
|
400
|
-
manifest/tmp/
|
|
401
|
-
symphony/
|
|
402
|
-
workspace/uploads/
|
|
403
|
-
|
|
404
|
-
# JBoss6
|
|
405
|
-
/server/all/data
|
|
406
|
-
/server/all/log
|
|
407
|
-
/server/all/tmp
|
|
408
|
-
/server/all/work
|
|
409
|
-
/server/default/data
|
|
410
|
-
/server/default/log
|
|
411
|
-
/server/default/tmp
|
|
412
|
-
/server/default/work
|
|
413
|
-
/server/minimal/data
|
|
414
|
-
/server/minimal/log
|
|
415
|
-
/server/minimal/tmp
|
|
416
|
-
/server/minimal/work
|
|
417
|
-
/server/jbossweb-standalone/data
|
|
418
|
-
/server/jbossweb-standalone/log
|
|
419
|
-
/server/jbossweb-standalone/tmp
|
|
420
|
-
/server/jbossweb-standalone/work
|
|
421
|
-
/server/standard/data
|
|
422
|
-
/server/standard/log
|
|
423
|
-
/server/standard/tmp
|
|
424
|
-
/server/standard/work
|
|
425
|
-
|
|
426
|
-
# JBoss4
|
|
427
|
-
/server/all/data
|
|
428
|
-
/server/all/log
|
|
429
|
-
/server/all/tmp
|
|
430
|
-
/server/all/work
|
|
431
|
-
/server/default/data
|
|
432
|
-
/server/default/log
|
|
433
|
-
/server/default/tmp
|
|
434
|
-
/server/default/work
|
|
435
|
-
/server/minimal/data
|
|
436
|
-
/server/minimal/log
|
|
437
|
-
/server/minimal/tmp
|
|
438
|
-
/server/minimal/work
|
|
439
|
-
|
|
440
|
-
# Red
|
|
441
|
-
quick-test/runnable/
|
|
442
|
-
system/tests/source/units/auto-tests/
|
|
443
|
-
tests/source/units/auto-tests/
|
|
444
|
-
|
|
445
|
-
# Snap
|
|
446
|
-
parts/
|
|
447
|
-
prime/
|
|
448
|
-
stage/
|
|
449
|
-
|
|
450
|
-
# Splunk
|
|
451
|
-
local
|
|
452
|
-
|
|
453
|
-
# Hugo
|
|
454
|
-
/public/
|
|
455
|
-
/resources/_gen/
|
|
456
|
-
|
|
457
|
-
# Bazel
|
|
458
|
-
/bazel-*
|
|
459
|
-
|
|
460
|
-
# Nikola
|
|
461
|
-
cache/
|
|
462
|
-
output/
|
|
463
|
-
|
|
464
|
-
# JupyterNotebooks
|
|
465
|
-
profile_default/
|
|
466
|
-
|
|
467
|
-
# Puppet
|
|
468
|
-
pkg/*
|
|
469
|
-
spec/fixtures/*
|
|
470
|
-
coverage/*
|
|
471
|
-
vendor/*
|
|
472
|
-
|
|
473
|
-
# Racket
|
|
474
|
-
compiled/
|
|
475
|
-
|
|
476
|
-
# Phoenix
|
|
477
|
-
/tmp
|
|
478
|
-
/node_modules
|
|
479
|
-
/assets/node_modules
|
|
480
|
-
/priv/static/
|
|
481
|
-
/installer/_build
|
|
482
|
-
/installer/tmp
|
|
483
|
-
/installer/doc
|
|
484
|
-
/installer/deps
|
|
485
|
-
|
|
486
|
-
# Logtalk
|
|
487
|
-
lgt_tmp/
|
|
488
|
-
logtalk_tester_logs/
|
|
489
|
-
logtalk_doclet_logs/
|
|
490
|
-
|
|
491
|
-
# NWjs
|
|
492
|
-
locales/
|
|
493
|
-
pnacl/
|
|
494
|
-
|
|
495
|
-
# Cordova
|
|
496
|
-
/platforms
|
|
497
|
-
|
|
498
|
-
# Vue
|
|
499
|
-
docs/_book
|
|
500
|
-
test/
|
|
501
|
-
|
|
502
|
-
# Kentico
|
|
503
|
-
!CMS/CMSAdminControls/*/
|
|
504
|
-
!CMS/CMSModules/System/*/
|
|
505
|
-
!CMS/App_Data/CIRepository/**
|
|
506
|
-
CMS/App_Data/AzureCache
|
|
507
|
-
CMS/App_Data/AzureTemp
|
|
508
|
-
CMS/App_Data/CMSTemp
|
|
509
|
-
CMS/App_Data/Persistent
|
|
510
|
-
CMS/CMSSiteUtils/Export
|
|
511
|
-
CMS/CMSSiteUtils/Import
|
|
512
|
-
CMS/App_Data/CMSModules/SmartSearch/**
|
|
513
|
-
!CMS/App_Data/CMSModules/SmartSearch/*/
|
|
514
|
-
!CMS/App_Data/CMSModules/SmartSearch/_StopWords/**
|
|
515
|
-
!CMS/App_Data/CMSModules/SmartSearch/_Synonyms/**
|
|
516
|
-
CMS/App_Data/DancingGoat
|
|
517
|
-
CMS/App_Data/Templates/CommunitySite
|
|
518
|
-
CMS/App_Data/Templates/CorporateSite
|
|
519
|
-
CMS/App_Data/Templates/DancingGoat
|
|
520
|
-
CMS/App_Data/Templates/EcommerceSite
|
|
521
|
-
CMS/App_Data/Templates/IntranetPortal
|
|
522
|
-
CMS/App_Data/Templates/PersonalSite
|
|
523
|
-
CMS/App_Themes/CommunitySite
|
|
524
|
-
CMS/App_Themes/CorporateSite
|
|
525
|
-
CMS/App_Themes/EcommerceSite
|
|
526
|
-
CMS/App_Themes/IntranetPortal*
|
|
527
|
-
CMS/App_Themes/PersonalSite
|
|
528
|
-
CMS/CMSTemplates/CorporateSite
|
|
529
|
-
CMS/CommunitySite
|
|
530
|
-
CMS/CorporateSite
|
|
531
|
-
CMS/DancingGoat
|
|
532
|
-
CMS/EcommerceSite
|
|
533
|
-
CMS/IntranetPortal
|
|
534
|
-
CMS/PersonalSite
|
|
535
|
-
|
|
536
|
-
# InforCMS
|
|
537
|
-
[Mm]odel/[Dd]eployment
|
|
538
|
-
!Model/Portal/*/SupportFiles/[Bb]in/
|
|
539
|
-
!Model/Portal/PortalTemplates/*/SupportFiles/[Bb]in
|
|
540
|
-
|
|
541
|
-
# Xilinx
|
|
542
|
-
*_synth_*
|
|
543
|
-
*/*/bd/*/hdl
|
|
544
|
-
*/*/*/bd/*/hdl
|
|
545
|
-
*/*/bd/*/ip/*/*/
|
|
546
|
-
*/*/*/bd/*/ip/*/*/
|
|
547
|
-
hw_handoff
|
|
548
|
-
ipshared
|
|
549
|
-
|
|
550
|
-
# Pimcore
|
|
551
|
-
/pimcore
|
|
552
|
-
/website/var/assets/*
|
|
553
|
-
/website/var/backup/*
|
|
554
|
-
/website/var/cache/*
|
|
555
|
-
/website/var/classes/Object*
|
|
556
|
-
!/website/var/classes/objectbricks
|
|
557
|
-
/website/var/config/Geo*
|
|
558
|
-
/website/var/config/object/*
|
|
559
|
-
/website/var/config/portal/*
|
|
560
|
-
/website/var/config/sqlreport/*
|
|
561
|
-
/website/var/email/*
|
|
562
|
-
/website/var/recyclebin/*
|
|
563
|
-
/website/var/search/*
|
|
564
|
-
/website/var/system/*
|
|
565
|
-
/website/var/tmp/*
|
|
566
|
-
/website/var/versions/asset/*
|
|
567
|
-
/website/var/versions/document/*
|
|
568
|
-
/website/var/versions/object/*
|
|
569
|
-
/website/var/user-image/*
|
|
570
|
-
|
|
571
|
-
# Magento2
|
|
572
|
-
/sitemap
|
|
573
|
-
/pub/sitemap
|
|
574
|
-
/app/config_sandbox
|
|
575
|
-
/app/code/Magento/TestModule*
|
|
576
|
-
/pub/media/attribute/*
|
|
577
|
-
/pub/media/analytics/*
|
|
578
|
-
/pub/media/catalog/*
|
|
579
|
-
/pub/media/customer/*
|
|
580
|
-
/pub/media/downloadable/*
|
|
581
|
-
/pub/media/favicon/*
|
|
582
|
-
/pub/media/import/*
|
|
583
|
-
/pub/media/logo/*
|
|
584
|
-
/pub/media/theme/*
|
|
585
|
-
/pub/media/theme_customization/*
|
|
586
|
-
/pub/media/wysiwyg/*
|
|
587
|
-
/pub/media/tmp/*
|
|
588
|
-
/pub/media/captcha/*
|
|
589
|
-
/pub/static/*
|
|
590
|
-
/var/*
|
|
591
|
-
/vendor/*
|
|
592
|
-
/generated/*
|
|
593
|
-
|
|
594
|
-
# Bitrix
|
|
595
|
-
/bitrix/*
|
|
596
|
-
!/bitrix/templates
|
|
597
|
-
!/bitrix/components
|
|
598
|
-
/bitrix/components/bitrix
|
|
599
|
-
!/bitrix/gadgets
|
|
600
|
-
/bitrix/gadgets/bitrix
|
|
601
|
-
!/bitrix/php_interface/
|
|
602
|
-
/upload/
|
|
603
|
-
|
|
604
|
-
# Drupal7
|
|
605
|
-
files/
|
|
606
|
-
sites/*/files
|
|
607
|
-
sites/*/private
|
|
608
|
-
sites/*/translations
|
|
609
|
-
/includes
|
|
610
|
-
/misc
|
|
611
|
-
/modules
|
|
612
|
-
/profiles
|
|
613
|
-
/scripts
|
|
614
|
-
/themes
|
|
615
|
-
|
|
616
|
-
# CodeSniffer
|
|
617
|
-
/wpcs/*
|
|
618
|
-
|
|
619
|
-
# Jigsaw
|
|
620
|
-
build_*
|
|
621
|
-
|
|
622
|
-
# Magento1
|
|
623
|
-
/media/*
|
|
624
|
-
!/media/customer
|
|
625
|
-
/media/customer/*
|
|
626
|
-
!/media/dhl
|
|
627
|
-
/media/dhl/*
|
|
628
|
-
!/media/downloadable
|
|
629
|
-
/media/downloadable/*
|
|
630
|
-
!/media/xmlconnect
|
|
631
|
-
/media/xmlconnect/*
|
|
632
|
-
!/media/xmlconnect/custom
|
|
633
|
-
/media/xmlconnect/custom/*
|
|
634
|
-
!/media/xmlconnect/original
|
|
635
|
-
/media/xmlconnect/original/*
|
|
636
|
-
!/media/xmlconnect/system
|
|
637
|
-
/media/xmlconnect/system/*
|
|
638
|
-
/var/*
|
|
639
|
-
!/var/package
|
|
640
|
-
/var/package/*
|
|
641
|
-
|
|
642
|
-
# ThinkPHP
|
|
643
|
-
/Application/Runtime/
|
|
644
|
-
|
|
645
|
-
# AtmelStudio
|
|
646
|
-
[Dd]ebug/
|
|
647
|
-
[Rr]elease/
|
|
648
|
-
|
|
649
|
-
# IAR_EWARM
|
|
650
|
-
EWARM/**/Obj
|
|
651
|
-
EWARM/**/List
|
|
652
|
-
EWARM/**/Exe
|
|
653
|
-
EWARM/settings
|
|
654
|
-
|
|
655
|
-
# esp-idf
|
|
656
|
-
build/
|
|
657
|
-
sdkconfig
|
|
658
|
-
|
|
659
|
-
# Concrete5
|
|
660
|
-
error_log
|
|
661
|
-
files/cache/*
|
|
662
|
-
files/tmp/*
|
|
663
|
-
/application/files/*
|
|
664
|
-
/updates/*
|
|
665
|
-
|
|
666
|
-
# Drupal
|
|
667
|
-
/sites/*/files
|
|
668
|
-
/sites/*/public
|
|
669
|
-
/sites/*/private
|
|
670
|
-
/sites/*/files-public
|
|
671
|
-
/sites/*/files-private
|
|
672
|
-
/sites/*/translations
|
|
673
|
-
/sites/*/tmp
|
|
674
|
-
/sites/*/cache
|
|
675
|
-
/sites/simpletest
|
|
676
|
-
/core
|
|
677
|
-
/vendor
|
|
678
|
-
|
|
679
|
-
# Mercury
|
|
680
|
-
Mercury/
|
|
681
|
-
|
|
682
|
-
# Joomla
|
|
683
|
-
/administrator/cache/*
|
|
684
|
-
/administrator/components/com_actionlogs/*
|
|
685
|
-
/administrator/components/com_admin/*
|
|
686
|
-
/administrator/components/com_ajax/*
|
|
687
|
-
/administrator/components/com_associations/*
|
|
688
|
-
/administrator/components/com_banners/*
|
|
689
|
-
/administrator/components/com_cache/*
|
|
690
|
-
/administrator/components/com_categories/*
|
|
691
|
-
/administrator/components/com_checkin/*
|
|
692
|
-
/administrator/components/com_config/*
|
|
693
|
-
/administrator/components/com_contact/*
|
|
694
|
-
/administrator/components/com_content/*
|
|
695
|
-
/administrator/components/com_contenthistory/*
|
|
696
|
-
/administrator/components/com_cpanel/*
|
|
697
|
-
/administrator/components/com_fields/*
|
|
698
|
-
/administrator/components/com_finder/*
|
|
699
|
-
/administrator/components/com_installer/*
|
|
700
|
-
/administrator/components/com_joomlaupdate/*
|
|
701
|
-
/administrator/components/com_languages/*
|
|
702
|
-
/administrator/components/com_login/*
|
|
703
|
-
/administrator/components/com_media/*
|
|
704
|
-
/administrator/components/com_menus/*
|
|
705
|
-
/administrator/components/com_messages/*
|
|
706
|
-
/administrator/components/com_modules/*
|
|
707
|
-
/administrator/components/com_newsfeeds/*
|
|
708
|
-
/administrator/components/com_plugins/*
|
|
709
|
-
/administrator/components/com_postinstall/*
|
|
710
|
-
/administrator/components/com_privacy/*
|
|
711
|
-
/administrator/components/com_redirect/*
|
|
712
|
-
/administrator/components/com_search/*
|
|
713
|
-
/administrator/components/com_tags/*
|
|
714
|
-
/administrator/components/com_templates/*
|
|
715
|
-
/administrator/components/com_users/*
|
|
716
|
-
/administrator/help/*
|
|
717
|
-
/administrator/includes/*
|
|
718
|
-
/administrator/language/overrides/*
|
|
719
|
-
/administrator/logs/*
|
|
720
|
-
/administrator/modules/mod_custom/*
|
|
721
|
-
/administrator/modules/mod_feed/*
|
|
722
|
-
/administrator/modules/mod_latest/*
|
|
723
|
-
/administrator/modules/mod_latestactions/*
|
|
724
|
-
/administrator/modules/mod_logged/*
|
|
725
|
-
/administrator/modules/mod_login/*
|
|
726
|
-
/administrator/modules/mod_menu/*
|
|
727
|
-
/administrator/modules/mod_multilangstatus/*
|
|
728
|
-
/administrator/modules/mod_online/*
|
|
729
|
-
/administrator/modules/mod_popular/*
|
|
730
|
-
/administrator/modules/mod_privacy_dashboard/*
|
|
731
|
-
/administrator/modules/mod_quickicon/*
|
|
732
|
-
/administrator/modules/mod_sampledata/*
|
|
733
|
-
/administrator/modules/mod_stats_admin/*
|
|
734
|
-
/administrator/modules/mod_status/*
|
|
735
|
-
/administrator/modules/mod_submenu/*
|
|
736
|
-
/administrator/modules/mod_title/*
|
|
737
|
-
/administrator/modules/mod_toolbar/*
|
|
738
|
-
/administrator/modules/mod_unread/*
|
|
739
|
-
/administrator/modules/mod_version/*
|
|
740
|
-
/administrator/templates/hathor/*
|
|
741
|
-
/administrator/templates/isis/*
|
|
742
|
-
/administrator/templates/system/*
|
|
743
|
-
/bin/*
|
|
744
|
-
/cache/*
|
|
745
|
-
/cli/*
|
|
746
|
-
/components/com_ajax/*
|
|
747
|
-
/components/com_banners/*
|
|
748
|
-
/components/com_config/*
|
|
749
|
-
/components/com_contact/*
|
|
750
|
-
/components/com_content/*
|
|
751
|
-
/components/com_contenthistory/*
|
|
752
|
-
/components/com_fields/*
|
|
753
|
-
/components/com_finder/*
|
|
754
|
-
/components/com_mailto/*
|
|
755
|
-
/components/com_media/*
|
|
756
|
-
/components/com_menus/*
|
|
757
|
-
/components/com_modules/*
|
|
758
|
-
/components/com_newsfeeds/*
|
|
759
|
-
/components/com_privacy/*
|
|
760
|
-
/components/com_search/*
|
|
761
|
-
/components/com_tags/*
|
|
762
|
-
/components/com_users/*
|
|
763
|
-
/components/com_wrapper/*
|
|
764
|
-
/images/banners/*
|
|
765
|
-
/images/headers/*
|
|
766
|
-
/images/sampledata/*
|
|
767
|
-
/images/joomla*
|
|
768
|
-
/includes/*
|
|
769
|
-
/installation/*
|
|
770
|
-
/language/overrides/*
|
|
771
|
-
/layouts/joomla/*
|
|
772
|
-
/layouts/libraries/*
|
|
773
|
-
/layouts/plugins/*
|
|
774
|
-
/libraries/cms/*
|
|
775
|
-
/libraries/fof/*
|
|
776
|
-
/libraries/idna_convert/*
|
|
777
|
-
/libraries/joomla/*
|
|
778
|
-
/libraries/legacy/*
|
|
779
|
-
/libraries/php-encryption/*
|
|
780
|
-
/libraries/phpass/*
|
|
781
|
-
/libraries/phpmailer/*
|
|
782
|
-
/libraries/phputf8/*
|
|
783
|
-
/libraries/simplepie/*
|
|
784
|
-
/libraries/vendor/*
|
|
785
|
-
/media/cms/*
|
|
786
|
-
/media/com_associations/*
|
|
787
|
-
/media/com_contact/*
|
|
788
|
-
/media/com_content/*
|
|
789
|
-
/media/com_contenthistory/*
|
|
790
|
-
/media/com_fields/*
|
|
791
|
-
/media/com_finder/*
|
|
792
|
-
/media/com_joomlaupdate/*
|
|
793
|
-
/media/com_menus/*
|
|
794
|
-
/media/com_modules/*
|
|
795
|
-
/media/com_wrapper/*
|
|
796
|
-
/media/contacts/*
|
|
797
|
-
/media/editors/*
|
|
798
|
-
/media/jui/*
|
|
799
|
-
/media/mailto/*
|
|
800
|
-
/media/media/*
|
|
801
|
-
/media/mod_languages/*
|
|
802
|
-
/media/mod_sampledata/*
|
|
803
|
-
/media/overrider/*
|
|
804
|
-
/media/plg_captcha_recaptcha/*
|
|
805
|
-
/media/plg_captcha_recaptcha_invisible/*
|
|
806
|
-
/media/plg_quickicon_extensionupdate/*
|
|
807
|
-
/media/plg_quickicon_joomlaupdate/*
|
|
808
|
-
/media/plg_quickicon_privacycheck/*
|
|
809
|
-
/media/plg_system_highlight/*
|
|
810
|
-
/media/plg_system_stats/*
|
|
811
|
-
/media/plg_twofactorauth_totp/*
|
|
812
|
-
/media/system/*
|
|
813
|
-
/modules/mod_articles_archive/*
|
|
814
|
-
/modules/mod_articles_categories/*
|
|
815
|
-
/modules/mod_articles_category/*
|
|
816
|
-
/modules/mod_articles_latest/*
|
|
817
|
-
/modules/mod_articles_news/*
|
|
818
|
-
/modules/mod_articles_popular/*
|
|
819
|
-
/modules/mod_banners/*
|
|
820
|
-
/modules/mod_breadcrumbs/*
|
|
821
|
-
/modules/mod_custom/*
|
|
822
|
-
/modules/mod_feed/*
|
|
823
|
-
/modules/mod_finder/*
|
|
824
|
-
/modules/mod_footer/*
|
|
825
|
-
/modules/mod_languages/*
|
|
826
|
-
/modules/mod_login/*
|
|
827
|
-
/modules/mod_menu/*
|
|
828
|
-
/modules/mod_random_image/*
|
|
829
|
-
/modules/mod_related_items/*
|
|
830
|
-
/modules/mod_search/*
|
|
831
|
-
/modules/mod_stats/*
|
|
832
|
-
/modules/mod_syndicate/*
|
|
833
|
-
/modules/mod_tags_popular/*
|
|
834
|
-
/modules/mod_tags_similar/*
|
|
835
|
-
/modules/mod_users_latest/*
|
|
836
|
-
/modules/mod_whosonline/*
|
|
837
|
-
/modules/mod_wrapper/*
|
|
838
|
-
/plugins/actionlog/joomla/*
|
|
839
|
-
/plugins/authentication/cookie/*
|
|
840
|
-
/plugins/authentication/example/*
|
|
841
|
-
/plugins/authentication/gmail/*
|
|
842
|
-
/plugins/authentication/joomla/*
|
|
843
|
-
/plugins/authentication/ldap/*
|
|
844
|
-
/plugins/captcha/recaptcha/*
|
|
845
|
-
/plugins/captcha/recaptcha_invisible/*
|
|
846
|
-
/plugins/content/confirmconsent/*
|
|
847
|
-
/plugins/content/contact/*
|
|
848
|
-
/plugins/content/emailcloak/*
|
|
849
|
-
/plugins/content/example/*
|
|
850
|
-
/plugins/content/fields/*
|
|
851
|
-
/plugins/content/finder/*
|
|
852
|
-
/plugins/content/geshi/*
|
|
853
|
-
/plugins/content/joomla/*
|
|
854
|
-
/plugins/content/loadmodule/*
|
|
855
|
-
/plugins/content/pagebreak/*
|
|
856
|
-
/plugins/content/pagenavigation/*
|
|
857
|
-
/plugins/content/vote/*
|
|
858
|
-
/plugins/editors/codemirror/*
|
|
859
|
-
/plugins/editors/none/*
|
|
860
|
-
/plugins/editors/tinymce/*
|
|
861
|
-
/plugins/editors-xtd/article/*
|
|
862
|
-
/plugins/editors-xtd/contact/*
|
|
863
|
-
/plugins/editors-xtd/fields/*
|
|
864
|
-
/plugins/editors-xtd/image/*
|
|
865
|
-
/plugins/editors-xtd/menu/*
|
|
866
|
-
/plugins/editors-xtd/module/*
|
|
867
|
-
/plugins/editors-xtd/pagebreak/*
|
|
868
|
-
/plugins/editors-xtd/readmore/*
|
|
869
|
-
/plugins/extension/example/*
|
|
870
|
-
/plugins/extension/joomla/*
|
|
871
|
-
/plugins/fields/calendar/*
|
|
872
|
-
/plugins/fields/checkboxes/*
|
|
873
|
-
/plugins/fields/color/*
|
|
874
|
-
/plugins/fields/editor/*
|
|
875
|
-
/plugins/fields/imagelist/*
|
|
876
|
-
/plugins/fields/integer/*
|
|
877
|
-
/plugins/fields/list/*
|
|
878
|
-
/plugins/fields/media/*
|
|
879
|
-
/plugins/fields/radio/*
|
|
880
|
-
/plugins/fields/repeatable/*
|
|
881
|
-
/plugins/fields/sql/*
|
|
882
|
-
/plugins/fields/text/*
|
|
883
|
-
/plugins/fields/textarea/*
|
|
884
|
-
/plugins/fields/url/*
|
|
885
|
-
/plugins/fields/user/*
|
|
886
|
-
/plugins/fields/usergrouplist/*
|
|
887
|
-
/plugins/finder/categories/*
|
|
888
|
-
/plugins/finder/contacts/*
|
|
889
|
-
/plugins/finder/content/*
|
|
890
|
-
/plugins/finder/newsfeeds/*
|
|
891
|
-
/plugins/finder/tags/*
|
|
892
|
-
/plugins/installer/folderinstaller/*
|
|
893
|
-
/plugins/installer/packageinstaller/*
|
|
894
|
-
/plugins/installer/urlinstaller/*
|
|
895
|
-
/plugins/privacy/actionlogs/*
|
|
896
|
-
/plugins/privacy/consents/*
|
|
897
|
-
/plugins/privacy/contact/*
|
|
898
|
-
/plugins/privacy/content/*
|
|
899
|
-
/plugins/privacy/message/*
|
|
900
|
-
/plugins/privacy/user/*
|
|
901
|
-
/plugins/quickicon/extensionupdate/*
|
|
902
|
-
/plugins/quickicon/joomlaupdate/*
|
|
903
|
-
/plugins/quickicon/phpversioncheck/*
|
|
904
|
-
/plugins/quickicon/privacycheck/*
|
|
905
|
-
/plugins/sampledata/blog/*
|
|
906
|
-
/plugins/search/categories/*
|
|
907
|
-
/plugins/search/contacts/*
|
|
908
|
-
/plugins/search/content/*
|
|
909
|
-
/plugins/search/newsfeeds/*
|
|
910
|
-
/plugins/search/tags/*
|
|
911
|
-
/plugins/search/weblinks/*
|
|
912
|
-
/plugins/system/actionlogs/*
|
|
913
|
-
/plugins/system/cache/*
|
|
914
|
-
/plugins/system/debug/*
|
|
915
|
-
/plugins/system/fields/*
|
|
916
|
-
/plugins/system/highlight/*
|
|
917
|
-
/plugins/system/languagecode/*
|
|
918
|
-
/plugins/system/languagefilter/*
|
|
919
|
-
/plugins/system/log/*
|
|
920
|
-
/plugins/system/logout/*
|
|
921
|
-
/plugins/system/logrotation/*
|
|
922
|
-
/plugins/system/p3p/*
|
|
923
|
-
/plugins/system/privacyconsent/*
|
|
924
|
-
/plugins/system/redirect/*
|
|
925
|
-
/plugins/system/remember/*
|
|
926
|
-
/plugins/system/sef/*
|
|
927
|
-
/plugins/system/sessiongc/*
|
|
928
|
-
/plugins/system/stats/*
|
|
929
|
-
/plugins/system/updatenotification/*
|
|
930
|
-
/plugins/twofactorauth/totp/*
|
|
931
|
-
/plugins/twofactorauth/yubikey/*
|
|
932
|
-
/plugins/user/contactcreator/*
|
|
933
|
-
/plugins/user/example/*
|
|
934
|
-
/plugins/user/joomla/*
|
|
935
|
-
/plugins/user/profile/*
|
|
936
|
-
/plugins/user/terms/*
|
|
937
|
-
/templates/beez3/*
|
|
938
|
-
/templates/protostar/*
|
|
939
|
-
/templates/system/*
|
|
940
|
-
/tmp/*
|
|
941
|
-
|
|
942
|
-
# Yii
|
|
943
|
-
assets/*
|
|
944
|
-
protected/runtime/*
|
|
945
|
-
themes/classic/views/
|
|
946
|
-
|
|
947
|
-
# Rust
|
|
948
|
-
debug/
|
|
949
|
-
target/
|
|
950
|
-
|
|
951
|
-
# Node
|
|
952
|
-
logs
|
|
953
|
-
pids
|
|
954
|
-
lib-cov
|
|
955
|
-
coverage
|
|
956
|
-
bower_components
|
|
957
|
-
build/Release
|
|
958
|
-
node_modules/
|
|
959
|
-
jspm_packages/
|
|
960
|
-
web_modules/
|
|
961
|
-
out
|
|
962
|
-
dist
|
|
963
|
-
|
|
964
|
-
# PureScript
|
|
965
|
-
bower_components
|
|
966
|
-
node_modules
|
|
967
|
-
output
|
|
968
|
-
|
|
969
|
-
# JBoss
|
|
970
|
-
jboss/server/all/tmp/**/*
|
|
971
|
-
jboss/server/all/data/**/*
|
|
972
|
-
jboss/server/all/work/**/*
|
|
973
|
-
jboss/server/default/tmp/**/*
|
|
974
|
-
jboss/server/default/data/**/*
|
|
975
|
-
jboss/server/default/work/**/*
|
|
976
|
-
jboss/server/minimal/tmp/**/*
|
|
977
|
-
jboss/server/minimal/data/**/*
|
|
978
|
-
jboss/server/minimal/work/**/*
|
|
979
|
-
|
|
980
|
-
# Grails
|
|
981
|
-
/web-app/WEB-INF/classes
|
|
982
|
-
/test/reports
|
|
983
|
-
/logs
|
|
984
|
-
/plugins
|
|
985
|
-
/web-app/plugins
|
|
986
|
-
/target
|
|
987
|
-
|
|
988
|
-
# C
|
|
989
|
-
*.dSYM/
|
|
990
|
-
|
|
991
|
-
# ZendFramework
|
|
992
|
-
vendor/
|
|
993
|
-
data/logs/
|
|
994
|
-
data/cache/
|
|
995
|
-
data/sessions/
|
|
996
|
-
data/tmp/
|
|
997
|
-
temp/
|
|
998
|
-
data/DoctrineORMModule/Proxy/
|
|
999
|
-
data/DoctrineORMModule/cache/
|
|
1000
|
-
demos/
|
|
1001
|
-
extras/documentation
|
|
1002
|
-
|
|
1003
|
-
# PlayFramework
|
|
1004
|
-
bin/
|
|
1005
|
-
/db
|
|
1006
|
-
/lib/
|
|
1007
|
-
/logs/
|
|
1008
|
-
/modules
|
|
1009
|
-
/project/project
|
|
1010
|
-
/project/target
|
|
1011
|
-
/target
|
|
1012
|
-
tmp/
|
|
1013
|
-
test-result
|
|
1014
|
-
/dist/
|
|
1015
|
-
|
|
1016
|
-
# SugarCRM
|
|
1017
|
-
/cache/*
|
|
1018
|
-
/custom/history/
|
|
1019
|
-
/custom/modulebuilder/
|
|
1020
|
-
/custom/working/
|
|
1021
|
-
/custom/modules/*/Ext/
|
|
1022
|
-
/custom/application/Ext/
|
|
1023
|
-
/upload/*
|
|
1024
|
-
/upload_backup/
|
|
1025
|
-
|
|
1026
|
-
# ExpressionEngine
|
|
1027
|
-
images/avatars/
|
|
1028
|
-
images/captchas/
|
|
1029
|
-
images/smileys/
|
|
1030
|
-
images/member_photos/
|
|
1031
|
-
images/signature_attachments/
|
|
1032
|
-
images/pm_attachments/
|
|
1033
|
-
sized/
|
|
1034
|
-
thumbs/
|
|
1035
|
-
_thumbs/
|
|
1036
|
-
*/expressionengine/cache/*
|
|
1037
|
-
|
|
1038
|
-
# KiCad
|
|
1039
|
-
*~
|
|
1040
|
-
_autosave-*
|
|
1041
|
-
fp-info-cache
|
|
1042
|
-
|
|
1043
|
-
# Plone
|
|
1044
|
-
bin/
|
|
1045
|
-
build/
|
|
1046
|
-
develop-eggs/
|
|
1047
|
-
downloads/
|
|
1048
|
-
eggs/
|
|
1049
|
-
fake-eggs/
|
|
1050
|
-
parts/
|
|
1051
|
-
dist/
|
|
1052
|
-
var/
|
|
1053
|
-
|
|
1054
|
-
# D
|
|
1055
|
-
docs/
|
|
1056
|
-
|
|
1057
|
-
# CFWheels
|
|
1058
|
-
plugins/**/*
|
|
1059
|
-
files
|
|
1060
|
-
db/sql
|
|
1061
|
-
javascripts/bundles
|
|
1062
|
-
stylesheets/bundles
|
|
1063
|
-
|
|
1064
|
-
# Yeoman
|
|
1065
|
-
node_modules/
|
|
1066
|
-
bower_components/
|
|
1067
|
-
build/
|
|
1068
|
-
dist/
|
|
1069
|
-
|
|
1070
|
-
# Nanoc
|
|
1071
|
-
output/
|
|
1072
|
-
tmp/nanoc/
|
|
1073
|
-
|
|
1074
|
-
# Erlang
|
|
1075
|
-
rel/example_project
|
|
1076
|
-
deps
|
|
1077
|
-
_build/
|
|
1078
|
-
_checkouts/
|
|
1079
|
-
|
|
1080
|
-
# VisualStudio
|
|
1081
|
-
[Dd]ebug/
|
|
1082
|
-
[Dd]ebugPublic/
|
|
1083
|
-
[Rr]elease/
|
|
1084
|
-
[Rr]eleases/
|
|
1085
|
-
x64/
|
|
1086
|
-
x86/
|
|
1087
|
-
[Ww][Ii][Nn]32/
|
|
1088
|
-
[Aa][Rr][Mm]/
|
|
1089
|
-
[Aa][Rr][Mm]64/
|
|
1090
|
-
bld/
|
|
1091
|
-
[Bb]in/
|
|
1092
|
-
[Oo]bj/
|
|
1093
|
-
[Ll]og/
|
|
1094
|
-
[Ll]ogs/
|
|
1095
|
-
Generated\ Files/
|
|
1096
|
-
[Tt]est[Rr]esult*/
|
|
1097
|
-
[Dd]ebugPS/
|
|
1098
|
-
[Rr]eleasePS/
|
|
1099
|
-
BenchmarkDotNet.Artifacts/
|
|
1100
|
-
artifacts/
|
|
1101
|
-
_Chutzpah*
|
|
1102
|
-
ipch/
|
|
1103
|
-
$tf/
|
|
1104
|
-
_ReSharper*/
|
|
1105
|
-
_TeamCity*
|
|
1106
|
-
_NCrunch_*
|
|
1107
|
-
nCrunchTemp_*
|
|
1108
|
-
AutoTest.Net/
|
|
1109
|
-
[Ee]xpress/
|
|
1110
|
-
DocProject/buildhelp/
|
|
1111
|
-
DocProject/Help/Html2
|
|
1112
|
-
DocProject/Help/html
|
|
1113
|
-
publish/
|
|
1114
|
-
PublishScripts/
|
|
1115
|
-
**/[Pp]ackages/*
|
|
1116
|
-
!**/[Pp]ackages/build/
|
|
1117
|
-
csx/
|
|
1118
|
-
ecf/
|
|
1119
|
-
rcf/
|
|
1120
|
-
AppPackages/
|
|
1121
|
-
BundleArtifacts/
|
|
1122
|
-
!?*.[Cc]ache/
|
|
1123
|
-
ClientBin/
|
|
1124
|
-
~$*
|
|
1125
|
-
*~
|
|
1126
|
-
Generated_Code/
|
|
1127
|
-
_UpgradeReport_Files/
|
|
1128
|
-
Backup*/
|
|
1129
|
-
ServiceFabricBackup/
|
|
1130
|
-
FakesAssemblies/
|
|
1131
|
-
node_modules/
|
|
1132
|
-
**/*.HTMLClient/GeneratedArtifacts
|
|
1133
|
-
**/*.DesktopClient/GeneratedArtifacts
|
|
1134
|
-
**/*.Server/GeneratedArtifacts
|
|
1135
|
-
_Pvt_Extensions
|
|
1136
|
-
paket-files/
|
|
1137
|
-
__pycache__/
|
|
1138
|
-
OpenCover/
|
|
1139
|
-
ASALocalRun/
|
|
1140
|
-
healthchecksdb
|
|
1141
|
-
MigrationBackup/
|
|
1142
|
-
|
|
1143
|
-
# Perl
|
|
1144
|
-
!Build/
|
|
1145
|
-
cover_db/
|
|
1146
|
-
_build/
|
|
1147
|
-
Build
|
|
1148
|
-
inc/
|
|
1149
|
-
/blib/
|
|
1150
|
-
/_eumm/
|
|
1151
|
-
/Makefile
|
|
1152
|
-
/pm_to_blib
|
|
1153
|
-
|
|
1154
|
-
# OCaml
|
|
1155
|
-
_build/
|
|
1156
|
-
_opam/
|
|
1157
|
-
|
|
1158
|
-
# Agda
|
|
1159
|
-
MAlonzo/**
|
|
1160
|
-
|
|
1161
|
-
# Clojure
|
|
1162
|
-
/lib/
|
|
1163
|
-
/classes/
|
|
1164
|
-
/target/
|
|
1165
|
-
/checkouts/
|
|
1166
|
-
|
|
1167
|
-
# OpenCart
|
|
1168
|
-
download/
|
|
1169
|
-
image/data/
|
|
1170
|
-
image/cache/
|
|
1171
|
-
system/cache/
|
|
1172
|
-
system/logs/
|
|
1173
|
-
system/storage/
|
|
1174
|
-
vqmod/logs/*
|
|
1175
|
-
vqmod/vqcache/*
|
|
1176
|
-
|
|
1177
|
-
# Kotlin
|
|
1178
|
-
hs_err_pid*
|
|
1179
|
-
|
|
1180
|
-
# Julia
|
|
1181
|
-
deps/downloads/
|
|
1182
|
-
deps/usr/
|
|
1183
|
-
docs/build/
|
|
1184
|
-
docs/site/
|
|
1185
|
-
|
|
1186
|
-
# Opa
|
|
1187
|
-
_build
|
|
1188
|
-
_tracks
|
|
1189
|
-
opa-debug-js
|
|
1190
|
-
|
|
1191
|
-
# Windows
|
|
1192
|
-
$RECYCLE.BIN/
|
|
1193
|
-
|
|
1194
|
-
# MonoDevelop
|
|
1195
|
-
test-results/
|
|
1196
|
-
|
|
1197
|
-
# JDeveloper
|
|
1198
|
-
temp/
|
|
1199
|
-
classes/
|
|
1200
|
-
deploy/
|
|
1201
|
-
javadoc/
|
|
1202
|
-
|
|
1203
|
-
# CodeKit
|
|
1204
|
-
/min
|
|
1205
|
-
|
|
1206
|
-
# VirtualEnv
|
|
1207
|
-
[Bb]in
|
|
1208
|
-
[Ii]nclude
|
|
1209
|
-
[Ll]ib
|
|
1210
|
-
[Ll]ib64
|
|
1211
|
-
[Ll]ocal
|
|
1212
|
-
[Ss]cripts
|
|
1213
|
-
|
|
1214
|
-
# Tags
|
|
1215
|
-
TAGS
|
|
1216
|
-
!TAGS/
|
|
1217
|
-
tags
|
|
1218
|
-
!tags/
|
|
1219
|
-
GTAGS
|
|
1220
|
-
GRTAGS
|
|
1221
|
-
GPATH
|
|
1222
|
-
GSYMS
|
|
1223
|
-
|
|
1224
|
-
# Virtuoso
|
|
1225
|
-
lvsRunDir/*
|
|
1226
|
-
drcRunDir/*
|
|
1227
|
-
|
|
1228
|
-
# PSoCCreator
|
|
1229
|
-
Debug/
|
|
1230
|
-
Release/
|
|
1231
|
-
Export/
|
|
1232
|
-
*/codegentemp
|
|
1233
|
-
*/Generated_Source
|
|
1234
|
-
|
|
1235
|
-
# Calabash
|
|
1236
|
-
rerun/
|
|
1237
|
-
reports/
|
|
1238
|
-
screenshots/
|
|
1239
|
-
test-servers/
|
|
1240
|
-
vendor
|
|
1241
|
-
|
|
1242
|
-
# TextMate
|
|
1243
|
-
tmtags
|
|
1244
|
-
|
|
1245
|
-
# Lazarus
|
|
1246
|
-
backup/
|
|
1247
|
-
lib/
|
|
1248
|
-
*.app/
|
|
1249
|
-
|
|
1250
|
-
# macOS
|
|
1251
|
-
Icon
|
|
1252
|
-
|
|
1253
|
-
Network Trash Folder
|
|
1254
|
-
Temporary Items
|
|
1255
|
-
|
|
1256
|
-
# EiffelStudio
|
|
1257
|
-
EIFGENs
|
|
1258
|
-
|
|
1259
|
-
# MATLAB
|
|
1260
|
-
helpsearch*/
|
|
1261
|
-
slprj/
|
|
1262
|
-
sccprj/
|
|
1263
|
-
codegen/
|
|
1264
|
-
octave-workspace
|
|
1265
|
-
|
|
1266
|
-
# FlexBuilder
|
|
1267
|
-
bin/
|
|
1268
|
-
bin-debug/
|
|
1269
|
-
bin-release/
|
|
1270
|
-
|
|
1271
|
-
# Eclipse
|
|
1272
|
-
bin/
|
|
1273
|
-
tmp/
|
|
1274
|
-
|
|
1275
|
-
# Vim
|
|
1276
|
-
*~
|
|
1277
|
-
tags
|
|
1278
|
-
|
|
1279
|
-
# SynopsysVCS
|
|
1280
|
-
simv
|
|
1281
|
-
simv.daidir/
|
|
1282
|
-
simv.db.dir/
|
|
1283
|
-
simv.vdb/
|
|
1284
|
-
urgReport/
|
|
1285
|
-
DVEfiles/
|
|
1286
|
-
|
|
1287
|
-
# Emacs
|
|
1288
|
-
*~
|
|
1289
|
-
\#*\#
|
|
1290
|
-
auto-save-list
|
|
1291
|
-
tramp
|
|
1292
|
-
*_archive
|
|
1293
|
-
/eshell/history
|
|
1294
|
-
/eshell/lastdir
|
|
1295
|
-
/elpa/
|
|
1296
|
-
/auto/
|
|
1297
|
-
dist/
|
|
1298
|
-
/server/
|
|
1299
|
-
|
|
1300
|
-
# Momentics
|
|
1301
|
-
x86/
|
|
1302
|
-
arm/
|
|
1303
|
-
arm-p/
|
|
1304
|
-
|
|
1305
|
-
# Linux
|
|
1306
|
-
*~
|
|
1307
|
-
|
|
1308
|
-
# SublimeText
|
|
1309
|
-
Package Control.cache/
|
|
1310
|
-
Package Control.ca-certs/
|
|
1311
|
-
|
|
1312
|
-
# CVS
|
|
1313
|
-
/CVS/*
|
|
1314
|
-
**/CVS/*
|
|
1315
|
-
|
|
1316
|
-
# Dreamweaver
|
|
1317
|
-
_notes
|
|
1318
|
-
_compareTemp
|
|
1319
|
-
configs/
|
|
1320
|
-
|
|
1321
|
-
# Xcode
|
|
1322
|
-
xcuserdata/
|
|
1323
|
-
build/
|
|
1324
|
-
DerivedData/
|
|
1325
|
-
|
|
1326
|
-
# WebMethods
|
|
1327
|
-
**/IntegrationServer/datastore/
|
|
1328
|
-
**/IntegrationServer/db/
|
|
1329
|
-
**/IntegrationServer/DocumentStore/
|
|
1330
|
-
**/IntegrationServer/lib/
|
|
1331
|
-
**/IntegrationServer/logs/
|
|
1332
|
-
**/IntegrationServer/replicate/
|
|
1333
|
-
**/IntegrationServer/sdk/
|
|
1334
|
-
**/IntegrationServer/support/
|
|
1335
|
-
**/IntegrationServer/update/
|
|
1336
|
-
**/IntegrationServer/userFtpRoot/
|
|
1337
|
-
**/IntegrationServer/web/
|
|
1338
|
-
**/IntegrationServer/WmRepository4/
|
|
1339
|
-
**/IntegrationServer/XAStore/
|
|
1340
|
-
**/IntegrationServer/packages/Wm*/
|
|
1341
|
-
|
|
1342
|
-
# ModelSim
|
|
1343
|
-
[_@]*
|
|
1344
|
-
wlf*
|
|
1345
|
-
cov*/
|
|
1346
|
-
transcript*
|
|
1347
|
-
|
|
1348
|
-
# NetBeans
|
|
1349
|
-
**/nbproject/private/
|
|
1350
|
-
build/
|
|
1351
|
-
nbbuild/
|
|
1352
|
-
dist/
|
|
1353
|
-
nbdist/
|
|
1354
|
-
|
|
1355
|
-
# JetBrains
|
|
1356
|
-
cmake-build-*/
|
|
1357
|
-
out/
|
|
1358
|
-
|
|
1359
|
-
# Octave
|
|
1360
|
-
helpsearch*/
|
|
1361
|
-
slprj/
|
|
1362
|
-
sccprj/
|
|
1363
|
-
codegen/
|
|
1364
|
-
octave-workspace
|
|
1365
|
-
|
|
1366
|
-
# SBT
|
|
1367
|
-
dist/*
|
|
1368
|
-
target/
|
|
1369
|
-
lib_managed/
|
|
1370
|
-
project/boot/
|
|
1371
|
-
project/plugins/project/
|
|
1372
|
-
|
|
1373
|
-
# XilinxISE
|
|
1374
|
-
iseconfig/
|
|
1375
|
-
xlnx_auto_0_xdb/
|
|
1376
|
-
xst/
|
|
1377
|
-
_ngo/
|
|
1378
|
-
_xmsgs/
|
|
1379
|
-
|
|
1380
|
-
# Smalltalk
|
|
1381
|
-
/package-cache
|
|
1382
|
-
/play-cache
|
|
1383
|
-
/play-stash
|
|
1384
|
-
/github-cache
|
|
1385
|
-
|
|
1386
|
-
# Magento
|
|
1387
|
-
/media/*
|
|
1388
|
-
!/media/customer
|
|
1389
|
-
/media/customer/*
|
|
1390
|
-
!/media/dhl
|
|
1391
|
-
/media/dhl/*
|
|
1392
|
-
!/media/downloadable
|
|
1393
|
-
/media/downloadable/*
|
|
1394
|
-
!/media/xmlconnect
|
|
1395
|
-
/media/xmlconnect/*
|
|
1396
|
-
!/media/xmlconnect/custom
|
|
1397
|
-
/media/xmlconnect/custom/*
|
|
1398
|
-
!/media/xmlconnect/original
|
|
1399
|
-
/media/xmlconnect/original/*
|
|
1400
|
-
!/media/xmlconnect/system
|
|
1401
|
-
/media/xmlconnect/system/*
|
|
1402
|
-
/var/*
|
|
1403
|
-
!/var/package
|
|
1404
|
-
/var/package/*
|
|
1405
|
-
|
|
1406
|
-
# TurboGears2
|
|
1407
|
-
data/*
|
|
1408
|
-
dist
|
|
1409
|
-
build
|
|
1410
|
-
|
|
1411
|
-
# ChefCookbook
|
|
1412
|
-
/cookbooks
|
|
1413
|
-
bin/*
|
|
1414
|
-
|
|
1415
|
-
# TeX
|
|
1416
|
-
latex.out/
|
|
1417
|
-
*-gnuplottex-*
|
|
1418
|
-
*-tikzDictionary
|
|
1419
|
-
_minted*
|
|
1420
|
-
sympy-plots-for-*.tex/
|
|
1421
|
-
pythontex-files-*/
|
|
1422
|
-
TSWLatexianTemp*
|
|
1423
|
-
*~[0-9]*
|
|
1424
|
-
|
|
1425
|
-
# Rails
|
|
1426
|
-
/public/system
|
|
1427
|
-
/coverage/
|
|
1428
|
-
/spec/tmp
|
|
1429
|
-
/log/*
|
|
1430
|
-
/tmp/*
|
|
1431
|
-
/vendor/bundle
|
|
1432
|
-
/vendor/assets/bower_components
|
|
1433
|
-
node_modules/
|
|
1434
|
-
/public/packs
|
|
1435
|
-
/public/packs-test
|
|
1436
|
-
/public/assets
|
|
1437
|
-
/storage/*
|
|
1438
|
-
/public/uploads
|
|
1439
|
-
|
|
1440
|
-
# Dart
|
|
1441
|
-
build/
|
|
1442
|
-
doc/api/
|
|
1443
|
-
|
|
1444
|
-
# Ruby
|
|
1445
|
-
/coverage/
|
|
1446
|
-
/InstalledFiles
|
|
1447
|
-
/pkg/
|
|
1448
|
-
/spec/reports/
|
|
1449
|
-
/test/tmp/
|
|
1450
|
-
/test/version_tmp/
|
|
1451
|
-
/tmp/
|
|
1452
|
-
build/
|
|
1453
|
-
build-iPhoneOS/
|
|
1454
|
-
build-iPhoneSimulator/
|
|
1455
|
-
/_yardoc/
|
|
1456
|
-
/doc/
|
|
1457
|
-
/rdoc/
|
|
1458
|
-
/vendor/bundle
|
|
1459
|
-
/lib/bundler/man/
|
|
1460
|
-
|
|
1461
|
-
# Textpattern
|
|
1462
|
-
rpc/
|
|
1463
|
-
sites/site*/admin/
|
|
1464
|
-
sites/site*/private/
|
|
1465
|
-
sites/site*/public/admin/
|
|
1466
|
-
sites/site*/public/setup/
|
|
1467
|
-
sites/site*/public/theme/
|
|
1468
|
-
textpattern/
|
|
1469
|
-
|
|
1470
|
-
# Autotools
|
|
1471
|
-
/ar-lib
|
|
1472
|
-
/mdate-sh
|
|
1473
|
-
/py-compile
|
|
1474
|
-
/test-driver
|
|
1475
|
-
/ylwrap
|
|
1476
|
-
/compile
|
|
1477
|
-
/configure
|
|
1478
|
-
/depcomp
|
|
1479
|
-
/install-sh
|
|
1480
|
-
/missing
|
|
1481
|
-
/stamp-h1
|
|
1482
|
-
Makefile
|
|
1483
|
-
|
|
1484
|
-
# Qooxdoo
|
|
1485
|
-
cache
|
|
1486
|
-
cache-downloads
|
|
1487
|
-
inspector
|
|
1488
|
-
api
|
|
1489
|
-
|
|
1490
|
-
# Maven
|
|
1491
|
-
target/
|
|
1492
|
-
|
|
1493
|
-
# Waf
|
|
1494
|
-
waf-*-*/
|
|
1495
|
-
waf3-*-*/
|
|
1496
|
-
|
|
1497
|
-
# Qt
|
|
1498
|
-
Makefile*
|
|
1499
|
-
*build-*
|
|
1500
|
-
|
|
1501
|
-
# ForceDotCom
|
|
1502
|
-
Referenced Packages
|
|
1503
|
-
|
|
1504
|
-
# SeamGen
|
|
1505
|
-
/bootstrap/data
|
|
1506
|
-
/bootstrap/tmp
|
|
1507
|
-
/classes/
|
|
1508
|
-
/dist/
|
|
1509
|
-
/exploded-archives/
|
|
1510
|
-
/test-build/
|
|
1511
|
-
/test-output/
|
|
1512
|
-
/test-report/
|
|
1513
|
-
/target/
|
|
1514
|
-
|
|
1515
|
-
# RhodesRhomobile
|
|
1516
|
-
rholog-*
|
|
1517
|
-
sim-*
|
|
1518
|
-
bin/libs
|
|
1519
|
-
bin/RhoBundle
|
|
1520
|
-
bin/tmp
|
|
1521
|
-
bin/target
|
|
1522
|
-
|
|
1523
|
-
# Xojo
|
|
1524
|
-
Builds*
|
|
1525
|
-
Debug*/Debug*\ Libs
|
|
1526
|
-
|
|
1527
|
-
# Haskell
|
|
1528
|
-
dist
|
|
1529
|
-
dist-*
|
|
1530
|
-
cabal-dev
|
|
1531
|
-
|
|
1532
|
-
# Elm
|
|
1533
|
-
elm-stuff
|
|
1534
|
-
repl-temp-*
|
|
1535
|
-
|
|
1536
|
-
# AppceleratorTitanium
|
|
1537
|
-
build/
|
|
1538
|
-
|
|
1539
|
-
# CraftCMS
|
|
1540
|
-
/craft/storage/*
|
|
1541
|
-
!/craft/storage/rebrand
|
|
1542
|
-
|
|
1543
|
-
# Gradle
|
|
1544
|
-
**/build/
|
|
1545
|
-
|
|
1546
|
-
# Elisp
|
|
1547
|
-
*~
|