23 lines
523 B
JavaScript
23 lines
523 B
JavaScript
import { getArg } from './lib/args.js';
|
|
import { createDb } from './lib/schema.js';
|
|
import { error } from './lib/log.js';
|
|
|
|
const ctx = 'initDb.js';
|
|
|
|
/**
|
|
* Initializes a user db from a list of existing directories
|
|
* at the specified `--path` parameter when executing the command.
|
|
* Useful when there is already a collection of folders.
|
|
*/
|
|
export const initDb = async () => {
|
|
let directory = '';
|
|
try {
|
|
directory = getArg('path');
|
|
} catch (err) {
|
|
error(ctx, err);
|
|
return;
|
|
}
|
|
createDb();
|
|
};
|
|
|
|
initDb();
|