How are you guys handling multiple `.env` ? i'd li...
# orm-help
y
How are you guys handling multiple
.env
? i'd like to use
.env.test
.<http://env.dev|env.dev>
.env.local
and so on. but prisma seems like only taking
.env
👀 1
1
a
Since you should never check in and push the .env files to the git repo you have to create the files at the target environment manually. So i have just copied the
.env.test
file content to
.env
on my test environment. That's it
n
Hey 👋 I think you would like to have a look at the Handling multiple env files guide: Using multiple .env files
👍 1
y
Thanks for the reference, @Nurul. This looks like a good solution 👏