mirror of
https://gitee.com/zongzhige/shopxo.git
synced 2026-07-07 06:15:29 +08:00
优化 安装包生成
This commit is contained in:
23
Application/Common/Conf/develop.php
Executable file
23
Application/Common/Conf/develop.php
Executable file
@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* 数据库配置信息-自动安装生成
|
||||
* @author Devil
|
||||
* @blog http://gong.gg/
|
||||
* @version 0.0.1
|
||||
* @datetime 2016-12-01T21:51:08+0800
|
||||
*/
|
||||
return array(
|
||||
// 数据库配置信息
|
||||
'DB_TYPE' => 'mysql', // 数据库类型
|
||||
'DB_HOST' => '127.0.0.1', // 服务器地址
|
||||
'DB_NAME' => 'shopxo', // 数据库名
|
||||
'DB_USER' => 'root', // 用户名
|
||||
'DB_PWD' => 'root', // 密码
|
||||
'DB_PORT' => 3306, // 端口
|
||||
'DB_PARAMS' => array(), // 数据库连接参数
|
||||
'DB_PREFIX' => 's_', // 数据库表前缀
|
||||
'DB_CHARSET'=> 'utf8mb4', // 字符集
|
||||
'DB_DEBUG' => false, // 数据库调试模式 开启后可以记录SQL日志
|
||||
);
|
||||
?>
|
||||
Reference in New Issue
Block a user