17 lines
314 B
JavaScript
17 lines
314 B
JavaScript
|
|
// 数据库配置文件
|
|||
|
|
// MySQL地址留空,由用户配置
|
|||
|
|
|
|||
|
|
const config = {
|
|||
|
|
development: {
|
|||
|
|
host: 'localhost',
|
|||
|
|
port: 3306,
|
|||
|
|
user: 'root',
|
|||
|
|
password: 'ys123456',
|
|||
|
|
database: 'test',
|
|||
|
|
connectionLimit: 10,
|
|||
|
|
waitForConnections: true,
|
|||
|
|
charset: 'utf8mb4'
|
|||
|
|
}
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
module.exports = config;
|