You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 14, 2026. It is now read-only.
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');
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?