For some reason, when I upload a nextjs app (using...
# orm-help
w
For some reason, when I upload a nextjs app (using Prisma) to OpenShift (kubernetes) , the only way I can get prisma to work is if I copy another copy of
.env
from
./prisma/.env
to
./.env
- any idea why this is?
r
@Will 👋 What version of Prisma are you using? The newer versions read
.env
from the root of the workspace so this might be the case.
w
oh! well that explains it 😊 Thanks @Ryan
👍 1