This commit is contained in:
einhorn_b 2024-01-08 16:45:53 +01:00
parent 646f78dd5d
commit e6a2771592

View File

@ -15,7 +15,7 @@ set +o allexport
# Load .env or .env.dist if not present
# NOTE: all config values will be in process.env when starting
# the services and will therefore take precedence over the .env
if [ -f "./.env" ]; then
if [ -f "$SCRIPT_PATH/.env" ]; then
set -o allexport
source $SCRIPT_PATH/.env
set +o allexport