added db builder as a node file

This commit is contained in:
Martin Donnelly 2016-04-04 15:03:42 +01:00
parent 31151ab75a
commit 80a720dcb3

View File

@ -17,20 +17,30 @@ function addUsers() {
})
.then(function(data) {
console.log(data);
dbAccount.addNewAccount({
username: 'Default', password: 'password', email: 'm@g.com'
})
.then(function(data) {
console.log(data);
return 'DONE';
})
.catch(function(err) {
console.error(err);
return -1;
});
})
.catch(function(err) {
console.error(err);
return -1;
});
dbAccount.addNewAccount({
username: 'Default', password: 'password', email: 'm@g.com'
})
.then(function(data) {
console.log(data);
})
.catch(function(err) {
console.error(err);
});
}
@ -38,6 +48,7 @@ function prepare_db() {
exec('psql -Upostgres -d oBrand -h localhost -f ./obrand.sql', function(err) {
if (err !== null) {
console.log('exec error: ' + err);
return -1;
} else {
addUsers();