Hey friends! I've been encountering an error with ...
# orm-help
s
Hey friends! I've been encountering an error with my prisma-client inside of my nodejs app:
Copy code
Error: Project not found: 'default_default'
I'm a little confused about how to address it. Facts: - generated prisma client successfully (using MongoDB) - running nodejs app, mongo, and prisma inside docker-compose - prisma server is running and client is connected (mongo logs -
Successfully authenticated as principal prisma on admin
) - was able to successfully add users via the prisma client into mongoDB at some point, can't figure out what I changed to break this Would really appreciate some experienced insight. Thanks!
I think I figured this out. I had to run
prisma deploy
again after
docker-compose up