Added db username password

This commit is contained in:
cgole 2015-11-18 14:37:46 -08:00
parent f255850382
commit da879ea47f
1 changed files with 3 additions and 3 deletions

View File

@ -3,15 +3,15 @@ module.exports = require('should');
var DataSource = require('loopback-datasource-juggler').DataSource;
var config = require('rc')('loopback', {test: {mysql: {}}}).test.mysql;
console.log(config)
global.getConfig = function (options) {
var dbConf = {
host: process.env.MYSQL_HOST || config.host || 'localhost',
port: process.env.MYSQL_PORT || config.port || 3306,
database: 'myapp_test',
username: config.username,
password: config.password,
username: process.env.MYSQL_USERNAME || config.username,
password: process.env.MYSQL_PASSWORD || config.password,
createDatabase: true
};