chore: remove unused marketplace configuration
Build & Deploy / Build & Push Docker Image (push) Successful in 3m9s
Test / Type Check (all packages) (push) Successful in 56s
Build & Deploy / Deploy to VPS (push) Successful in 4s
Test / API Unit Tests (push) Failing after 49s
Test / Homepage Unit Tests (push) Successful in 42s
Test / Storefront Unit Tests (push) Failing after 40s
Test / Admin Unit Tests (push) Successful in 40s
Test / Dashboard Unit Tests (push) Failing after 41s
Test / API Integration Tests (push) Successful in 1m0s

This commit is contained in:
root
2026-07-02 18:24:19 -04:00
parent 7ff2dbb139
commit c21916559f
12 changed files with 38 additions and 43 deletions
+9
View File
@@ -97,6 +97,15 @@ export_compose_env_from_file() {
export "${key}=${value}"
fi
done < "${ENV_FILE}"
if [[ -z "${NEXT_PUBLIC_CARPLACE_URL:-}" ]]; then
if [[ -n "${NEXT_PUBLIC_STOREFRONT_URL:-}" ]]; then
NEXT_PUBLIC_CARPLACE_URL="${NEXT_PUBLIC_STOREFRONT_URL%/}/carplace"
elif [[ -n "${SITE_ORIGIN:-}" ]]; then
NEXT_PUBLIC_CARPLACE_URL="${SITE_ORIGIN%/}/carplace"
fi
export NEXT_PUBLIC_CARPLACE_URL
fi
}
load_prod_env_exports() {