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 @@ +