This repository has been archived by the owner on Aug 30, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
820355c
commit ea97f2e
Showing
6 changed files
with
100 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -65,5 +65,6 @@ module.exports = { | |
} | ||
} | ||
}, | ||
livereload: true | ||
livereload: true, | ||
seedDB: process.env.MONGO_SEED || false | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
'use strict'; | ||
|
||
var mongoose = require('mongoose'), | ||
chalk = require('chalk'), | ||
crypto = require('crypto'), | ||
User = mongoose.model('User'); | ||
|
||
console.log(chalk.bold.red('Warning: Database seeding is turned on')); | ||
|
||
//If production only seed admin if it does not exist | ||
if (process.env.NODE_ENV === 'production') { | ||
//Add Local Admin | ||
User.find({username: 'admin'}, function (err, users) { | ||
if (users.length === 0) { | ||
var password = crypto.randomBytes(64).toString('hex').slice(1, 20); | ||
var user = new User({ | ||
username: 'admin', | ||
password: password, | ||
provider: 'local', | ||
email: 'admin@localhost.com', | ||
firstName: 'Admin', | ||
lastName: 'Local', | ||
displayName: 'Admin Local', | ||
roles: ['user', 'admin'] | ||
}); | ||
// Then save the user | ||
user.save(function (err) { | ||
if (err) { | ||
console.log('Failed to add local admin'); | ||
} else { | ||
console.log(chalk.bold.red('Local admin added with password set to ' + password)); | ||
} | ||
}); | ||
} else { | ||
console.log('Admin user exists'); | ||
} | ||
}); | ||
} else { | ||
//Add Local User | ||
User.find({username: 'user'}).remove(function () { | ||
var password = crypto.randomBytes(64).toString('hex').slice(1, 20); | ||
var user = new User({ | ||
username: 'user', | ||
password: password, | ||
provider: 'local', | ||
email: 'user@localhost.com', | ||
firstName: 'User', | ||
lastName: 'Local', | ||
displayName: 'User Local', | ||
roles: ['user'] | ||
}); | ||
// Then save the user | ||
user.save(function (err) { | ||
if (err) { | ||
console.log('Failed to add local user'); | ||
} else { | ||
console.log(chalk.bold.red('Local user added with password set to ' + password)); | ||
} | ||
}); | ||
}); | ||
|
||
|
||
//Add Local Admin | ||
User.find({username: 'admin'}).remove(function () { | ||
var password = crypto.randomBytes(64).toString('hex').slice(1, 20); | ||
var user = new User({ | ||
username: 'admin', | ||
password: password, | ||
provider: 'local', | ||
email: 'admin@localhost.com', | ||
firstName: 'Admin', | ||
lastName: 'Local', | ||
displayName: 'Admin Local', | ||
roles: ['user', 'admin'] | ||
}); | ||
// Then save the user | ||
user.save(function (err) { | ||
if (err) { | ||
console.log('Failed to add local admin'); | ||
} else { | ||
console.log(chalk.bold.red('Local admin added with password set to ' + password)); | ||
} | ||
}); | ||
}); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters