How do you handle multiple stages within one repos...
# orm-help
t
How do you handle multiple stages within one repository? I'd like to isolate the development database from production while using continuous delivery.
h
You can have for example two jobs one fro development version and one production. And each job use different env vars 🙂
t
Can you elaborate? Isn't the deployment target managed in prisma.yml?
h
t
But the endpoint it deploys to is fixed. I want to separate the local and production endpoint.
h
You can have two files one for local and one for production deployment
t
And how would you
prisma deploy
then?
h
Please try to read what i sent you 🙂 it is there
t
No that doesn't answer the question. You cannot switch the
endpoint
inside prisma.yml.