Hello everybody, I might need some advice.
I followed
@max's tutorial here:
https://github.com/maxdarque/prisma-docker to set up a root server, which runs the mysql instance natively without docker. Besides that, the root server shall host my frontend, the prisma server and the graphql-yoga server.
I know of the performance issues, this will probably create, but it's only for the beginning. Later on, I will probably hop on a dedicated AWS service for every server and the db.
Now my issue:
I created the docker container with docker-compose and connected to my db via the necessary credentials. Afterwards I created a subfolder within the directory with the docker-compose.yml by initializing the prisma project with prisma init. I deployed the prisma project to my created cluster, but even though I set up an external db for this, it still uses the (on deploy) freshly created default db, when I start the graphql server with yarn start.
Any ideas, what could cause this?
Thanks to everyone in advance!