OSDN Git Service

Добавлены в пагинатор переход к первой и последней страницам. Приведены стили иконок...
[invent/invent.git] / web / index-test.php
1 <?php
2
3 // NOTE: Make sure this file is not accessible when deployed to production
4 if (!in_array(@$_SERVER['REMOTE_ADDR'], ['127.0.0.1', '::1', '192.168.0.68'])) {
5     die('You are not allowed to access this file.');
6 }
7
8 defined('YII_DEBUG') or define('YII_DEBUG', true);
9 defined('YII_ENV') or define('YII_ENV', 'test');
10
11 require __DIR__ . '/../vendor/autoload.php';
12 require __DIR__ . '/../vendor/yiisoft/yii2/Yii.php';
13
14 $config = require __DIR__ . '/../config/test.php';
15
16 (new yii\web\Application($config))->run();