Browse Source

在environments/skeleton/创建backend模块

wechat_public_accounts
linyao 5 years ago
parent
commit
c7e781c740
  1. 41
      environments/skeleton/backend/config/main-local.php
  2. 3
      environments/skeleton/backend/config/params-local.php

41
environments/skeleton/backend/config/main-local.php

@ -0,0 +1,41 @@
<?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',
'allowedIPs' => ['127.0.0.1'],
'generators' => [
'crud' => [
'class' => 'blobt\generators\crud\Generator',
'templates' => [
'blobtCrud' => '@blobt/generators/crud/default',
'linyaoCrud' => '@linyao/generators/crud/default',
]
],
'model' => [
'class' => 'linyao\generators\model\Generator',
'templates' => [
'linyaoModel' => '@linyao/generators/model/default',
]
]
],
];
}
return $config;

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

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