first commit
This commit is contained in:
25
environments/dev/frontend/config/main-local.php
Normal file
25
environments/dev/frontend/config/main-local.php
Normal file
@ -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/dev/frontend/config/params-local.php
Normal file
3
environments/dev/frontend/config/params-local.php
Normal file
@ -0,0 +1,3 @@
|
||||
<?php
|
||||
return [
|
||||
];
|
9
environments/dev/frontend/config/test-local.php
Normal file
9
environments/dev/frontend/config/test-local.php
Normal file
@ -0,0 +1,9 @@
|
||||
<?php
|
||||
return yii\helpers\ArrayHelper::merge(
|
||||
require __DIR__ . '/../../common/config/test-local.php',
|
||||
require __DIR__ . '/main.php',
|
||||
require __DIR__ . '/main-local.php',
|
||||
require __DIR__ . '/test.php',
|
||||
[
|
||||
]
|
||||
);
|
Reference in New Issue
Block a user