How do you run `primsa` commands in a `create-t3-turbo` monorepo?
I can run
pnpm db-push
but I would like to run other commands, like prisma migrate
. I can't figure out how to do this5 Replies
prisma
folder to run commands like npx prisma studio
, etcUnknown User•2y ago
Message Not Public
Sign In & Join Server To View
I have a different
DATABASE_URL
that is connected to a postegres database on supabase.. is that wrong?Unknown User•2y ago
Message Not Public
Sign In & Join Server To View
No I am still confused. My
.env
file already has a DATABASE_URL
connection to a supabase hosted postgres database
e.g.
Wouldn't adding a local host overwrite that?
Also, how would this allow me to run a npx prisma studio
command from the root dir?
Ahh it seems like it might be as simple as adding a
to the package.json
I will test more
That does seem to be the answer ^^