Hey, I have an issue with prisma :slightly_smiling...
# orm-help
c
Hey, I have an issue with prisma 🙂 I'm trying to set up https://github.com/mikecao/umami on a Raspberry Pi 4 (arm64, running in 32-bit mode). The problem is, there are no precompiled binaries for arm (see https://github.com/prisma/prisma/issues/861 ). So I've now compiled them myself and have them available on my machine. But when I run
npm run build
on umami, prisma stll tries to download prebuilts, and fails with a fatal error because of the 404. This shouldn't be happening, because I have the environment variables set to point to my binaries (see https://github.com/prisma/prisma/issues/1329 ). Here's the output when installing:
Copy code
Database type detected: postgresql
Copied /home/code/umami/prisma/schema.postgresql.prisma to /home/code/umami/prisma/schema.prisma

> umami@0.74.0 build-db-client /home/code/umami
> dotenv prisma generate

Environment variables loaded from prisma/.env
Warning Precompiled binaries are not available for arm.
> Downloading Prisma engines for arm-openssl-1.1.x [                    ] 0%Error: Not Found <https://binaries.prisma.sh/all_commits/e6c9b4b2b7fa162d0d459d1863321f547498fcfe/arm-openssl-1.1.x/prisma-fmt.gz>
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! umami@0.74.0 build-db-client: `dotenv prisma generate`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the umami@0.74.0 build-db-client script.