Fix env conventions again

This commit is contained in:
Jon Staab
2026-04-02 14:00:07 -07:00
parent dc46b42cb6
commit 8710043a02
8 changed files with 9 additions and 11 deletions
+2 -5
View File
@@ -2,11 +2,8 @@
temp_env=$(declare -p -x)
if [ -f .env.template ]; then
source .env.template
fi
if [ -f .env.local ]; then
source .env.local
if [ -f .env ]; then
source .env
fi
# Avoid overwriting env vars provided directly