Hello, this is from the docs: > Note that the C...
# prisma-whats-new
p
Hello, this is from the docs:
Note that the CLI will load environment variables from 3 different locations and in the following order:
- The local environment
- A file specified with the
--dotenv
parameter
- if the
--dotenvargument
was omitted, a file called
.env
in the same directory
My question is, does
dotenv
take care of this entirely or is there code that makes this happen as indicated above? UPDATE: I just did a few tests and it seems that
dotenv
takes care of that order indeed.