^ this seems to generate the prisma client okay.
I also double checked my DATABASE_URL environment variable, and it seems to be set okay. Is there any other trick to getting prisma set up? The logs literally give 0 information other than “Segmentation fault” and then it restarts.
Prisma is connecting to my own Postgres database outside of fly.io (it’s a supabase postgres instance), not sure if that is relevant at all.
I updated Node to use v18 LTS and, among other issues, started getting a segmentation fault. I suspect it’s this as my Remix app spins up does a health check that includes a database check and . That led to this issue:
This comment specifically mentions using the “binary engine” with newer Node versions due to the bundled OpenSSL v3, as opposed to 1.1.1 which apparently doesn’t have this issue.
So Node 16 is Node 17+ is . I’m going to check out binary engine option and see.