mirror of
https://gitlab.silvrtree.co.uk/martind2000/obrand-admin-server.git
synced 2025-01-10 20:55:07 +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) {
|
||||
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();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user