1
0
mirror of https://github.com/stolksdorf/homebrewery.git synced 2025-12-13 20:55:56 +00:00

New brew search finished on admin page

This commit is contained in:
Scott Tolksdorf
2017-01-28 16:35:48 -05:00
parent 7e6f42f062
commit 6030134de2
15 changed files with 117 additions and 396 deletions

View File

@@ -10,11 +10,11 @@ return Promise.resolve()
.then(BrewData.removeAll)
.then(() => {
console.log('Adding random brews...');
return return BrewGen.populateDB(BrewGen.random(5));
return BrewGen.populateDB(BrewGen.random(50));
})
.then(() => {
console.log('Adding specific brews...');
return return BrewGen.populateDB(BrewGen.static());
return BrewGen.populateDB(BrewGen.static());
})
.then(() => {
return DB.close();