From c7e781c74060ffcc40f915d077345398a9c2d08a Mon Sep 17 00:00:00 2001 From: linyao <602604991@qq.com> Date: Tue, 12 Nov 2019 13:55:32 +0800 Subject: [PATCH] =?UTF-8?q?=E5=9C=A8environments/skeleton/=E5=88=9B?= =?UTF-8?q?=E5=BB=BAbackend=E6=A8=A1=E5=9D=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../skeleton/backend/config/main-local.php | 41 +++++++++++++++++++ .../skeleton/backend/config/params-local.php | 3 ++ 2 files changed, 44 insertions(+) create mode 100644 environments/skeleton/backend/config/main-local.php create mode 100644 environments/skeleton/backend/config/params-local.php diff --git a/environments/skeleton/backend/config/main-local.php b/environments/skeleton/backend/config/main-local.php new file mode 100644 index 0000000..ddff7d3 --- /dev/null +++ b/environments/skeleton/backend/config/main-local.php @@ -0,0 +1,41 @@ + [ + '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; diff --git a/environments/skeleton/backend/config/params-local.php b/environments/skeleton/backend/config/params-local.php new file mode 100644 index 0000000..d0b9c34 --- /dev/null +++ b/environments/skeleton/backend/config/params-local.php @@ -0,0 +1,3 @@ +