fix: WSL兼容+verify加载secrets+deploy非交互模式
这个提交包含在:
父节点
de95af8e9f
当前提交
fac6f8b988
@ -46,6 +46,14 @@ if [ -f "$ROOT_DIR/.env" ]; then
|
|||||||
# shellcheck disable=SC1090
|
# shellcheck disable=SC1090
|
||||||
set -a; . "$ROOT_DIR/.env" 2>/dev/null; set +a
|
set -a; . "$ROOT_DIR/.env" 2>/dev/null; set +a
|
||||||
fi
|
fi
|
||||||
|
if [ -f "$ROOT_DIR/config/secrets.env" ]; then
|
||||||
|
# shellcheck disable=SC1090
|
||||||
|
set -a; . "$ROOT_DIR/config/secrets.env" 2>/dev/null; set +a
|
||||||
|
fi
|
||||||
|
if [ -f "$ROOT_DIR/config/tenant/bootstrap.env" ]; then
|
||||||
|
# shellcheck disable=SC1090
|
||||||
|
set -a; . "$ROOT_DIR/config/tenant/bootstrap.env" 2>/dev/null; set +a
|
||||||
|
fi
|
||||||
|
|
||||||
DEPLOY_HOST="${DEPLOY_HOST:-127.0.0.1}"
|
DEPLOY_HOST="${DEPLOY_HOST:-127.0.0.1}"
|
||||||
BASE_URL="${BASE_URL:-http://${DEPLOY_HOST}}"
|
BASE_URL="${BASE_URL:-http://${DEPLOY_HOST}}"
|
||||||
|
|||||||
正在加载...
在新工单中引用
屏蔽一个用户