Your IP : 216.73.216.79


Current Path : /var/www/html/portalv2/backend/config/
Upload File :
Current File : /var/www/html/portalv2/backend/config/main-local.php

<?php

$config = [
    'components' => [
        'request' => [
            // !!! insert a secret key in the following (if it is empty) - this is required by cookie validation
            'cookieValidationKey' => 'LT2acl9n9yvjV3WniGgGlmHuvHNS988s',
        ],
    ],
];

if (!YII_ENV_TEST) {
    
    if (YII_DEBUG) {
        // configuration adjustments for 'dev' environment
        $config['bootstrap'][] = 'debug';
        $config['modules']['debug'] = [
            'class' => 'yii\debug\Module',
            'allowedIPs' => ['*'] // adjust this to your needs
        ];
    }

    if (YII_ENV === 'dev') {
        $config['bootstrap'][] = 'gii';
        $config['modules']['gii'] = [
            'class' => 'yii\gii\Module',
            'generators' => [ //here
                'crud' => [ // generator name
                    'class' => 'yii\gii\generators\crud\Generator', // generator class
                    'templates' => [ //setting for out templates
                        'dynaweb' => '@backend/template/crud/default'
                    ],
                ]
            ],
            'allowedIPs' => ['*'] // adjust this to your needs
        ];
    }
}

return $config;