LLM-test/test/sql/2-sql测试-1/mock/config/database.js

17 lines
314 B
JavaScript
Raw Normal View History

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