diff --git a/commands/env.cmd b/commands/env.cmd index cd09285c..ae936ec9 100644 --- a/commands/env.cmd +++ b/commands/env.cmd @@ -130,6 +130,9 @@ fi [[ ${WARDEN_MAGEPACK} -eq 1 ]] \ && appendEnvPartialIfExists "${WARDEN_ENV_TYPE}.magepack" +[[ ${WARDEN_PHP_SPX} -eq 1 ]] \ + && appendEnvPartialIfExists "php-spx" + if [[ -f "${WARDEN_ENV_PATH}/.warden/warden-env.yml" ]]; then DOCKER_COMPOSE_ARGS+=("-f") DOCKER_COMPOSE_ARGS+=("${WARDEN_ENV_PATH}/.warden/warden-env.yml") diff --git a/commands/spx.cmd b/commands/spx.cmd new file mode 100644 index 00000000..8b09d1af --- /dev/null +++ b/commands/spx.cmd @@ -0,0 +1,16 @@ +#!/usr/bin/env bash +[[ ! ${WARDEN_DIR} ]] && >&2 echo -e "\033[31mThis script is not intended to be run directly!\033[0m" && exit 1 + +WARDEN_ENV_PATH="$(locateEnvPath)" || exit $? +loadEnvConfig "${WARDEN_ENV_PATH}" || exit $? + +## set defaults for this command which can be overridden either using exports in the user +## profile or setting them in the .env configuration on a per-project basis +WARDEN_ENV_SPX_COMMAND=${WARDEN_ENV_SPX_COMMAND:-bash} +WARDEN_ENV_SPX_CONTAINER=${WARDEN_ENV_SPX_CONTAINER:-php-spx} + +## allow return codes from sub-process to bubble up normally +trap '' ERR + +"$WARDEN_BIN" env exec "${WARDEN_ENV_SPX_CONTAINER}" \ + "${WARDEN_ENV_SPX_COMMAND}" "${WARDEN_PARAMS[@]}" "$@" diff --git a/commands/spx.help b/commands/spx.help new file mode 100644 index 00000000..f454cbac --- /dev/null +++ b/commands/spx.help @@ -0,0 +1,11 @@ +#!/usr/bin/env bash +[[ ! ${WARDEN_DIR} ]] && >&2 echo -e "\033[31mThis script is not intended to be run directly!\033[0m" && exit 1 + +WARDEN_USAGE=$(cat <