yii2-netdisk/web/index-test-acceptance.php

17 lines
480 B
PHP
Raw Normal View History

2013-12-02 19:23:58 +08:00
<?php
2013-12-18 13:40:52 +08:00
// NOTE: Make sure this file is not accessible when deployed to production
2013-12-02 19:23:58 +08:00
defined('YII_DEBUG') or define('YII_DEBUG', true);
2013-12-02 19:23:58 +08:00
defined('YII_ENV') or define('YII_ENV', 'test');
require(__DIR__ . '/../vendor/autoload.php');
require(__DIR__ . '/../vendor/yiisoft/yii2/yii/Yii.php');
2013-12-02 19:23:58 +08:00
$config = yii\helpers\ArrayHelper::merge(
require(__DIR__ . '/../config/web.php'),
2013-12-02 19:23:58 +08:00
require(__DIR__ . '/../config/codeception/acceptance.php')
);
2013-12-18 13:40:52 +08:00
(new yii\web\Application($config))->run();