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) { .then(function(data) {
console.log(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) { .catch(function(err) {
console.error(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) { exec('psql -Upostgres -d oBrand -h localhost -f ./obrand.sql', function(err) {
if (err !== null) { if (err !== null) {
console.log('exec error: ' + err); console.log('exec error: ' + err);
return -1;
} else { } else {
addUsers(); addUsers();