The communications platform that puts data protection first.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Rocket.Chat/server/startup/initialData.coffee

17 lines
392 B

lineSep = '---------------------------'
Meteor.startup ->
if not Meteor.users.findOne()?
console.log lineSep.red
console.log 'Inserting user admin'.red
console.log 'email: admin@admin.com | password: admin'.red
id = Meteor.users.insert
createdAt: new Date
emails: [
address: 'admin@admin.com'
verified: true
],
name: 'Admin'
Accounts.setPassword id, 'admin'