Blame view

environments/prod/common/config/main-local.php 235 Bytes
8ec727c1   曹明   初始化代码提交
1
2
3
4
5
6
7
8
9
<?php
$config['components']['db'] = [
    'class' => 'yii\db\Connection',
    'dsn' => 'mysql:host=127.0.0.1;dbname=smart_db',
    'username' => 'root',
    'password' => 'Zhoundlee@2019',
    'charset' => 'utf8',
];

753bd90e   曹明   1.APP-wx 代码初始化。
10
return $config;
8ec727c1   曹明   初始化代码提交