mirror of
https://gitlab.silvrtree.co.uk/martind2000/obrand-admin-server.git
synced 2025-01-25 17:46:18 +00:00
added db builder as a node file
This commit is contained in:
parent
31151ab75a
commit
80a720dcb3
29
dbconfig.js
29
dbconfig.js
@ -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();
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user