Authored by 陈峰

config

... ... @@ -93,7 +93,16 @@ if (isProduction) {
timeout: 1000,
retries: 0
},
useCache: true
useCache: true,
mysql: {
connect: {
host: '10.67.2.144',
port: '3307',
user: 'yh_vpc_bak',
password: 'yoho@2Y$^YpNb7hp'
},
database: 'yoho_activity_platform',
}
});
} else if (isTest) {
Object.assign(module.exports, {
... ... @@ -116,6 +125,15 @@ if (isProduction) {
reconnect: 5000,
retries: 0
},
useCache: true
useCache: true,
mysql: {
connect: {
host: 'localhost',
port: '3306',
user: 'root',
password: ''
},
database: 'yoho_activity_platform',
}
});
}
... ...