This repository was archived by the owner on Mar 14, 2023. It is now read-only.

Description
To configure, I followed these steps:
git clone git@github.com:strues/boldr.git <DIR_NAME>
cd <DIR_NAME>
yarn
cd project && cp .env.example .env
Configure Postgres in .env and .boldr/config/default.js
yarn migrate
yarn seed // This is where i get this error
$ boldr seed
module.js:491
throw err;
^
Error: Cannot find module '../lib/cli.js'
In packages/bin/boldr.js
#!/usr/bin/env node
require('../lib/cli.js');
Am I missing any step in between?