Is there anyway that I can get `prisma deploy` to ...
# orm-help
s
Is there anyway that I can get
prisma deploy
to read my
.envrc
file as opposed to a
.env
file?
n
you can use
direnv
for example, have you tried that?
s
Just realised that I can create a
.envrc
file with the contents
dotenv
and it will use the
.env
file. So win!
🤯 1
Which means that
.env
is the authoritative source of env vars, but I don’t need the
dotenv
package anymore 😉