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
After installing Ballerine correctly as shown in the Readme, when running the commands:
pnpm run kyc-manual-review-example
&
pnpm run kyb-manual-review-example
I get the following error:
npm run docker:db && npm run db:reset && npm run db:migrate-dev && npm run seed
> @ballerine/[email protected] docker:db
> docker compose -f docker-compose.db.yml up -d --wait
time="2024-05-04T00:37:07-04:00" level=warning msg="The \"FovZTB91\" variable is not set. Defaulting to a blank string."
time="2024-05-04T00:37:07-04:00" level=warning msg="The \"FovZTB91\" variable is not set. Defaulting to a blank string."
time="2024-05-04T00:37:07-04:00" level=warning msg="The \"FovZTB91\" variable is not set. Defaulting to a blank string."
Container ballerine-x-db-1 Running
Container ballerine-x-db-1 Waiting
Container ballerine-x-db-1 Healthy
> @ballerine/[email protected] db:reset
> if [ "$DB_USER" != "root" ]; then prisma migrate reset --skip-seed -f; else echo 'Cannot run reset as root'; fi
No se esperaba "$DB_USER" en este momento.
ELIFECYCLE Command failed with exit code 1.
———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————
> NX Ran target setup for project @ballerine/workflows-service (3s)
× 1/1 failed
√ 0/1 succeeded [0 read from cache]
ELIFECYCLE Command failed with exit code 1.
The text was updated successfully, but these errors were encountered:
Hey @WiseGeorge , The issue you are facing is with running the script command "db:reset", until any permanent solution is provided, you can try it by changing the script command to "db:reset": "prisma migrate reset --skip-seed -f" within the services/workflows-service/package.json. That should work fine for now.
After installing Ballerine correctly as shown in the Readme, when running the commands:
pnpm run kyc-manual-review-example
&
pnpm run kyb-manual-review-example
I get the following error:
The text was updated successfully, but these errors were encountered: