I have a next.js app which im developing locally right now on development environment. Im calling on npm run dev my server and im running prisma studio with "dev": "next dev -p 3006 & npx prisma studio -p 3007",
Im wondering how I can access prisma studio if my next.js app is already deployed on heroku for example. Prisma provides a guide about deploying to heroku, but there it is not mentioned how to access the database via prisma studio after deployment.

