Elgg  Version master
testing_app.php
Go to the documentation of this file.
1 <?php
2 
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') ? : 'utf8mb4',
14  'dbport' => getenv('ELGG_DB_PORT') ? : '3306',
15  'dbhost' => getenv('ELGG_DB_HOST') ? : 'localhost',
16 
17  // site settings
18  'sitename' => 'Elgg CI Site',
19  'siteemail' => 'no_reply@ci.elgg.org',
20  'wwwroot' => getenv('ELGG_WWWROOT') ? : 'http://localhost/',
21  'dataroot' => getenv('HOME') . '/engine/tests/test_files/dataroot/',
22 
23  // admin account
24  'displayname' => 'Administrator',
25  'email' => 'admin@ci.elgg.org',
26  'username' => 'admin',
27  'password' => 'fancypassword',
28 
29  // timezone
30  'timezone' => 'UTC'
31 ];