-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.example.php
executable file
·43 lines (38 loc) · 1.04 KB
/
config.example.php
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
<?php
$dieAfter = 0;
//$testPath = '/var/www/html/SuiteCRM_test'; // pointing to an upgraded/installed instance
//$testPath = '/var/www/html/SuiteCRM-7.9.14';
//$testPath = '/var/www/html/SuiteAssured';
//$testPath = '/var/www/html/SuiteCRM-7.10.1';
$testPath = '/var/www/html/SuiteCRM';
//$controlPath = '/var/www/html/SuiteCRM';
//$controlPath = '/var/www/html/SuiteCRM_controltest'; // pointing to a clean repository instance
$controlPath = '/var/www/html/SuiteCRM-B';
//$controlPath = '/var/www/html/SA_upgrade_test';
//$controlPath = '/var/www/html/SuiteCRM-7.10.1';
$excludedPaths = array(
'cache/',
'tests/',
'vendor/',
'custom/',
'.git',
'.github/',
'.sass-cache/',
'upload/',
'themes/',
);
$excludedFiles = array(
'suitecrm_version.php',
'codeception.yml',
'.pullapprove.yml',
'.travis.yml',
'status.json',
'config.php',
'composer.lock',
'config_override.php',
'install.log',
'.htaccess',
'sugarcrm.log',
'suitecrm.log',
'upgradeWizard.log',
);