Move from .env to .env.local

This commit is contained in:
Jon Staab
2026-03-06 13:58:03 -08:00
parent 65fa93d853
commit 837e4bc537
6 changed files with 8 additions and 6 deletions
+2 -2
View File
@@ -5,8 +5,8 @@ temp_env=$(declare -p -x)
if [ -f .env.template ]; then
source .env.template
fi
if [ -f .env ]; then
source .env
if [ -f .env.local ]; then
source .env.local
fi
# Avoid overwriting env vars provided directly