Fix css issue.
This commit is contained in:
@@ -1,22 +0,0 @@
|
||||
import { prisma } from '../lib/db';
|
||||
|
||||
export default async () => {
|
||||
const account = await prisma.account.findOne({
|
||||
where: {
|
||||
username: 'admin',
|
||||
},
|
||||
});
|
||||
|
||||
if (!account) {
|
||||
await prisma.account.create({
|
||||
data: {
|
||||
username: 'admin',
|
||||
password: '$2a$10$BXHPV7APlV1I6WrKJt1igeJAyVsvbhMTaTAi3nHkUJFGPsYmfZq3y',
|
||||
is_admin: true,
|
||||
},
|
||||
});
|
||||
console.log('Account succesfully created.');
|
||||
} else {
|
||||
console.log('Account already exists.');
|
||||
}
|
||||
};
|
||||
7
cli/init.js
Normal file
7
cli/init.js
Normal file
@@ -0,0 +1,7 @@
|
||||
import term from 'terminal-kit';
|
||||
|
||||
const { terminal } = term;
|
||||
|
||||
export default function init() {
|
||||
terminal('hello!');
|
||||
}
|
||||
Reference in New Issue
Block a user