main-local.php 684 B

1234567891011121314151617181920212223242526
  1. <?php
  2. $config = [
  3. 'components' => [
  4. 'request' => [
  5. // !!! insert a secret key in the following (if it is empty) - this is required by cookie validation
  6. 'cookieValidationKey' => '3i18DOM7ZDqqQfr2S0hj0c60wFxxTb3J',
  7. ],
  8. ],
  9. ];
  10. if (!YII_ENV_TEST) {
  11. // configuration adjustments for 'dev' environment
  12. $config['bootstrap'][] = 'debug';
  13. $config['modules']['debug'] = [
  14. 'class' => 'yii\debug\Module',
  15. 'allowedIPs' => ['*'],
  16. ];
  17. $config['bootstrap'][] = 'zhhHuahuibaoGii';
  18. $config['modules']['zhhHuahuibaoGii'] = [
  19. 'class' => 'yii\gii\Module',
  20. 'allowedIPs' => ['*'],
  21. ];
  22. }
  23. return $config;