1 | <?php |
||
2 | |||
3 | /** |
||
4 | * Configuration array for Elgg installation on Travis |
||
5 | */ |
||
6 | return [ |
||
7 | |||
8 | // database settings |
||
9 | 'dbuser' => getenv('ELGG_DB_USER'), |
||
10 | 'dbpassword' => getenv('ELGG_DB_PASS'), |
||
11 | 'dbname' => getenv('ELGG_DB_NAME'), |
||
12 | 'dbprefix' => getenv('ELGG_DB_PREFIX'), |
||
13 | 'dbencoding' => getenv('ELGG_DB_ENCODING'), |
||
14 | |||
15 | // site settings |
||
16 | 'sitename' => 'Elgg Travis Site', |
||
17 | 'siteemail' => '[email protected]', |
||
18 | 'wwwroot' => getenv('ELGG_WWWROOT') ? : 'http://localhost/', |
||
19 | 'dataroot' => getenv('HOME') . '/engine/tests/test_files/dataroot/', |
||
0 ignored issues
–
show
Bug
introduced
by
Loading history...
|
|||
20 | |||
21 | // admin account |
||
22 | 'displayname' => 'Administrator', |
||
23 | 'email' => '[email protected]', |
||
24 | 'username' => 'admin', |
||
25 | 'password' => 'fancypassword', |
||
26 | |||
27 | // timezone |
||
28 | 'timezone' => 'UTC' |
||
29 | ]; |