Hello, does anyone know if it's possible to config...
# orm-help
g
Hello, does anyone know if it's possible to configure Prisma entirely through ENV variables ? Or at least everything sensitive, and the rest through a config file?
w
Yes, you can configure your prisma.yml through environment variables!
Your prisma.yml has to look like this:
Copy code
endpoint: ${env:ENDPOINT}
datamodel:
  - datamodel.graphql
secret: ${env:SECRET}