.env.dist.local -
.env.dist.local is a file name that combines the concepts of:
The use of .env.dist.local is a specific pattern often found in complex development workflows to balance shared configuration templates private local overrides The Anatomy of the Configuration Pattern .env.dist.local
"scripts": "postinstall": "if [ ! -f .env.local ] && [ -f .env.dist.local ]; then cp .env.dist.local .env.local; fi" then cp .env.dist.local .env.local
Here are the steps to use a .env.dist.local file in your project: .env.dist.local