mirror of
https://github.com/coollabsio/coolify-examples.git
synced 2026-02-18 13:28:57 +00:00
79 lines
2.5 KiB
Bash
79 lines
2.5 KiB
Bash
#!/usr/bin/env bash
|
|
|
|
CWD="$(cd -P -- "$(dirname -- "${BASH_SOURCE[0]}")" && pwd -P)"
|
|
|
|
export PROJECT_ROOT="${PROJECT_ROOT:-"$(dirname "$CWD")"}"
|
|
export ENV_FILE=${ENV_FILE:-"${PROJECT_ROOT}/.env"}
|
|
|
|
# shellcheck source=functions.sh
|
|
source "${PROJECT_ROOT}/bin/functions.sh"
|
|
|
|
curenv=$(declare -p -x)
|
|
|
|
load_dotenv "$ENV_FILE"
|
|
|
|
# Restore environment variables set globally
|
|
set -o allexport
|
|
eval "$curenv"
|
|
set +o allexport
|
|
|
|
export HOST=${HOST:-"localhost"}
|
|
export VITE_HOST
|
|
export ADMIN_PORT
|
|
export APP_URL
|
|
export SHOPWARE_ADMIN_SKIP_SOURCEMAP_GENERATION
|
|
export DISABLE_DEVSERVER_OPEN
|
|
export DDEV_PRIMARY_URL
|
|
|
|
if [[ -e "${PROJECT_ROOT}/vendor/shopware/platform" ]]; then
|
|
ADMIN_ROOT="${ADMIN_ROOT:-"${PROJECT_ROOT}/vendor/shopware/platform/src/Administration"}"
|
|
else
|
|
ADMIN_ROOT="${ADMIN_ROOT:-"${PROJECT_ROOT}/vendor/shopware/administration"}"
|
|
fi
|
|
|
|
export ADMIN_ROOT
|
|
|
|
BIN_TOOL="${CWD}/console"
|
|
|
|
[[ ${SHOPWARE_SKIP_BUNDLE_DUMP:-""} ]] || "${BIN_TOOL}" bundle:dump
|
|
"${BIN_TOOL}" feature:dump || true
|
|
|
|
if [[ $(command -v jq) ]]; then
|
|
OLDPWD=$(pwd)
|
|
cd "$PROJECT_ROOT" || exit
|
|
|
|
jq -c '.[]' "var/plugins.json" | while read -r config; do
|
|
srcPath=$(echo "$config" | jq -r '(.basePath + .administration.path)')
|
|
|
|
# the package.json files are always one upper
|
|
path=$(dirname "$srcPath")
|
|
name=$(echo "$config" | jq -r '.technicalName' )
|
|
|
|
skippingEnvVarName="SKIP_$(echo "$name" | sed -e 's/\([a-z]\)/\U\1/g' -e 's/-/_/g')"
|
|
|
|
if [[ ${!skippingEnvVarName:-""} ]]; then
|
|
continue
|
|
fi
|
|
|
|
if [[ -f "$path/package.json" && ! -d "$path/node_modules" && $name != "administration" ]]; then
|
|
echo "=> Installing npm dependencies for ${name}"
|
|
|
|
(cd "$path" && npm install --omit=dev)
|
|
fi
|
|
done
|
|
cd "$OLDPWD" || exit
|
|
else
|
|
echo "Cannot check extensions for required npm installations as jq is not installed"
|
|
fi
|
|
|
|
(cd "${ADMIN_ROOT}"/Resources/app/administration && npm install --prefer-offline)
|
|
|
|
# Dump entity schema
|
|
if [[ -z "${SHOPWARE_SKIP_ENTITY_SCHEMA_DUMP:-""}" ]] && [[ -f "${ADMIN_ROOT}"/Resources/app/administration/scripts/entitySchemaConverter/entity-schema-converter.ts ]]; then
|
|
mkdir -p "${ADMIN_ROOT}"/Resources/app/administration/test/_mocks_
|
|
"${BIN_TOOL}" -e prod framework:schema -s 'entity-schema' "${ADMIN_ROOT}"/Resources/app/administration/test/_mocks_/entity-schema.json
|
|
(cd "${ADMIN_ROOT}"/Resources/app/administration && npm run convert-entity-schema)
|
|
fi
|
|
|
|
(cd "${ADMIN_ROOT}"/Resources/app/administration && npm run dev)
|