You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.1 KiB
JavaScript
35 lines
1.1 KiB
JavaScript
const defaultExclude = ['**/node_modules/**', '**/.git*/**', '**/.git*', '**/.well-known/**', '*.{exe,docx}', '**/cache*/**', '**/tmp*/**', '**/logs/**', '**/web.config', '.idea/**'];
|
|
|
|
export const cfg = {
|
|
'info': {
|
|
folder: 'information-system',
|
|
exclude: [].concat(defaultExclude, ['{document,download_statement,sample}/**', '**/author/document/**',
|
|
'**/kcfinder/upload/**',
|
|
'**/kcfinder/cache/**',
|
|
'**/cache/**',
|
|
'**/author/document/**',
|
|
'**/statement_files/**',
|
|
'**/paypal_activities/**',
|
|
'**/author/document/**',
|
|
'**/application/libraries/composer/**',
|
|
'**/application/config/database.php',
|
|
]),
|
|
},
|
|
'gh': {
|
|
folder: 'globalhighlights.com',
|
|
exclude: [].concat(defaultExclude, ['**/{image,design,system}/**']),
|
|
},
|
|
'ch': {
|
|
folder: 'chinahighlights.com',
|
|
exclude: [].concat(defaultExclude, ['**/{image,design,system,pdf}/**']),
|
|
},
|
|
'ch-data': {
|
|
folder: 'data.chinahighlights.com',
|
|
exclude: [].concat(defaultExclude, []),
|
|
},
|
|
'ah': {
|
|
folder: 'asiahighlights.com',
|
|
exclude: [].concat(defaultExclude, ['**/{image,design,system,pdf}/**']),
|
|
},
|
|
};
|