1 Star 0 Fork 0

阿新_吉吉 / 币用宝yii

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
admin.php 1.19 KB
一键复制 编辑 原始数据 按行查看 历史
葛增鑫 提交于 2019-02-14 16:02 . no message
<?php
defined('YII_DEBUG') or define('YII_DEBUG', true);
defined('YII_ENV') or define('YII_ENV', 'dev');
//defined('YII_ENABLE_ERROR_HANDLER') or define('YII_ENABLE_ERROR_HANDLER', false);
require(__DIR__ . '/vendor/autoload.php');
require(__DIR__ . '/vendor/yiisoft/yii2/Yii.php');
require(__DIR__ . '/common/config/bootstrap.php');
require(__DIR__ . '/backend/config/bootstrap.php');
$config = yii\helpers\ArrayHelper::merge(
require(__DIR__ . '/common/config/main.php'),
require(__DIR__ . '/backend/config/main.php')
);
//var_dump($config);exit();
$config['components']['view'] = [
'theme' => [
'basePath' => '@statics/themes/admin',
'baseUrl' => '@statics/themes/admin',
'pathMap' => [
'@backend/views' => [
'@statics/themes/' . 'admin' . '/views',
],
],
],
];
if (!YII_ENV_TEST) {
// configuration adjustments for 'dev' environment
$config['bootstrap'][] = 'debug';
$config['modules']['debug'] = [
'class' => 'yii\debug\Module',
];
$config['bootstrap'][] = 'gii';
$config['modules']['gii'] = [
'class' => 'yii\gii\Module',
];
}
(new yii\web\Application($config))->run();
1
https://gitee.com/zuqiuren/yii.git
git@gitee.com:zuqiuren/yii.git
zuqiuren
yii
币用宝yii
master

搜索帮助