Files
speckle-server/packages/server/modules/cli/commands/db/seed.js
T

11 lines
234 B
JavaScript

/** @type {import('yargs').CommandModule} */
const command = {
command: 'seed',
describe: 'Seed your local DB with fake data',
builder(yargs) {
return yargs.commandDir('seed').demandCommand()
}
}
module.exports = command