2015-07-11 08:42:58 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @link https://www.humhub.org/
|
|
|
|
* @copyright Copyright (c) 2015 HumHub GmbH & Co. KG
|
|
|
|
* @license https://www.humhub.com/licences
|
|
|
|
*/
|
|
|
|
// NOTE: Make sure this file is not accessible when deployed to production
|
|
|
|
if (!in_array(@$_SERVER['REMOTE_ADDR'], ['127.0.0.1', '::1'])) {
|
|
|
|
die('You are not allowed to access this file.');
|
|
|
|
}
|
|
|
|
|
|
|
|
defined('YII_DEBUG') or define('YII_DEBUG', true);
|
|
|
|
defined('YII_ENV') or define('YII_ENV', 'test');
|
|
|
|
|
|
|
|
|
|
|
|
require(__DIR__ . '/protected/vendor/autoload.php');
|
|
|
|
require(__DIR__ . '/protected/vendor/yiisoft/yii2/Yii.php');
|
|
|
|
|
2016-03-30 10:01:17 -04:00
|
|
|
$config = yii\helpers\ArrayHelper::merge(
|
|
|
|
require(__DIR__ . '/protected/humhub/tests/codeception/config/acceptance.php'),
|
|
|
|
// add more configurations here
|
|
|
|
(is_readable(__DIR__ . '/protected/config/dynamic.php')) ? require(__DIR__ . '/protected/config/dynamic.php') : []
|
|
|
|
);
|
2015-07-11 08:42:58 +02:00
|
|
|
|
|
|
|
(new humhub\components\Application($config))->run();
|