mirror of
https://github.com/thinkjs/thinkjs.git
synced 2026-01-25 14:42:47 +00:00
10 lines
277 B
JavaScript
10 lines
277 B
JavaScript
module.exports = {
|
|
//配置项: 配置值
|
|
db_type: "mysql", // 数据库类型
|
|
db_host: "localhost", // 服务器地址
|
|
db_port: "", // 端口
|
|
db_name: "", // 数据库名
|
|
db_user: "root", // 用户名
|
|
db_pwd: "", // 密码
|
|
db_prefix: "think_", // 数据库表前缀
|
|
}; |