December 1, 2022
Load more .env Files for Different Environments using NodeJS
Environment variables are variables that are set outside of a program. Using a .env file for keeping secrets (that we don’t want accidentally leaked out) is standard practice, but finding a strategy for managing .env files between multiple environments on a single machine isn’t so obvious. When we talk about overcoming this challenge using…