Browse Source

初始化添加必要文件

wechat_public_accounts
blobt 5 years ago
parent
commit
0d963d0ad0
  1. 25
      environments/skeleton/kcadmin/config/main-local.php
  2. 3
      environments/skeleton/kcadmin/config/params-local.php

25
environments/skeleton/kcadmin/config/main-local.php

@ -0,0 +1,25 @@
<?php
$config = [
'components' => [
'request' => [
// !!! insert a secret key in the following (if it is empty) - this is required by cookie validation
'cookieValidationKey' => '',
],
],
];
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',
];
}
return $config;

3
environments/skeleton/kcadmin/config/params-local.php

@ -0,0 +1,3 @@
<?php
return [
];
Loading…
Cancel
Save