2013-12-02 15:23:58 +04:00
|
|
|
<?php
|
|
|
|
|
2013-12-18 00:40:52 -05:00
|
|
|
// NOTE: Make sure this file is not accessible when deployed to production
|
2013-12-28 15:04:08 -05:00
|
|
|
if (!in_array(@$_SERVER['REMOTE_ADDR'], ['127.0.0.1', '::1'])) {
|
2014-03-16 10:46:16 +06:00
|
|
|
die('You are not allowed to access this file.');
|
2013-12-28 15:04:08 -05:00
|
|
|
}
|
2013-12-02 15:23:58 +04:00
|
|
|
|
2013-12-17 00:27:33 +01:00
|
|
|
defined('YII_DEBUG') or define('YII_DEBUG', true);
|
2013-12-02 15:23:58 +04:00
|
|
|
defined('YII_ENV') or define('YII_ENV', 'test');
|
|
|
|
|
2013-12-17 00:27:33 +01:00
|
|
|
require(__DIR__ . '/../vendor/autoload.php');
|
2014-01-10 21:58:50 -05:00
|
|
|
require(__DIR__ . '/../vendor/yiisoft/yii2/Yii.php');
|
2013-12-02 15:23:58 +04:00
|
|
|
|
2013-12-28 15:04:08 -05:00
|
|
|
$config = require(__DIR__ . '/../tests/acceptance/_config.php');
|
2013-12-02 15:23:58 +04:00
|
|
|
|
2013-12-18 00:40:52 -05:00
|
|
|
(new yii\web\Application($config))->run();
|