blob: 7445916626f4fee450265d4d09a07d6dd5321e2c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
const bcrypt = require('bcrypt');
const moment = require('moment');
const randomstring = require('randomstring');
exports.seed = async db => {
const now = moment.utc().toDate();
const user = await db.table('users').where({ username: 'root' }).first();
if (user) return;
try {
const hash = await bcrypt.hash(process.env.ADMIN_PASSWORD, 10);
await db.table('users').insert({
username: process.env.ADMIN_ACCOUNT,
password: hash,
apiKey: randomstring.generate(64),
passwordEditedAt: now,
apiKeyEditedAt: now,
createdAt: now,
editedAt: now,
enabled: true,
isAdmin: true
});
console.log();
console.log('====================================================');
console.log('== Successfully created the admin account. ==');
console.log('====================================================');
console.log('== Run `yarn api` and `yarn site` next ==');
console.log('== preferably with pm2 or tmux to keep them alive ==');
console.log('====================================================');
console.log();
} catch (error) {
console.error(error);
}
}
|