main-local本地配置gii + debug
yoyocmf 2018-12-15 21:36:57

 backend目录新增main-local.php

PHP Code复制内容到剪贴板
  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' => '3kzPSIhG1Sx37sL8Jfck8c0sUCV62m1d',  
  7.         ],  
  8.     ],  
  9. ];  
  10.   
  11. if (env("YII_DEBUG")) {  
  12.     // configuration adjustments for 'dev' environment  
  13.     $config['bootstrap'][] = 'debug';  
  14.     $config['modules']['debug'] = [  
  15.         'class' => 'yii\debug\Module',  
  16.         'allowedIPs' => ['*.*.*.*''127.0.0.1''::1']//*.*.*.*不限地址,docker里面不属于127.0.0.1  
  17.     ];  
  18.   
  19.     $config['bootstrap'][] = 'gii';  
  20.     $config['modules']['gii'] = [  
  21.         'class' => 'yii\gii\Module',  
  22.         'allowedIPs' => ['*.*.*.*''127.0.0.1''::1'],//*.*.*.*不限地址,docker里面不属于127.0.0.1  
  23.         /*重新定义gii model & crud的生成模板*/  
  24.         'generators' => [  
  25. //        'module'=> [  
  26. //            'class' => 'yii\gii\generators\module\Generator',  
  27. //            'templates'=> [  
  28. //                'backend'=>'@common/gii/generators/module/default'  
  29. //            ]  
  30. //        ],  
  31. //        'model'=> [  
  32. //            'class' => 'yii\gii\generators\model\Generator',  
  33. //            'baseClass'=> 'base\BaseActiveRecord',  
  34. //            'ns'=> 'common\models',  
  35. //            'templates'=> [  
  36. //                'common'=>'@common/gii/generators/model/default',  
  37. //                'backend'=>'@common/gii/generators/model/backend'  
  38. //            ]  
  39. //        ],  
  40.             'crud' => [  
  41.                 'class' => 'yii\gii\generators\crud\Generator',  
  42.                 'templates' => [  
  43.                     // 自己的模板名  
  44.                     'yoyocmf' => '@backend/modules/gii/generators/crud/default'  
  45.                 ],  
  46.             ],  
  47.         ],  
  48.   
  49.     ];  
  50. }  
  51.   
  52. return $config;  

开启debug,gii生成模板,可以选择yoyocmf,与后台风格一致

 

 

 

 

本文来自于:http://www.yoyo88.cn/note/yoyocmf/394.html

Powered by yoyo苏ICP备15045725号