Rename legacy storefront app and references to carplace
Build & Push / Build & Push Docker Image (push) Failing after 10m39s

Replace storefront naming across source, tests, docs, config, and production scripts. Rename the legacy top-level app directory and Carplace component files, remove duplicate storefront startup scripts, and refresh the lockfile.
This commit is contained in:
root
2026-07-04 18:10:08 -04:00
parent fefaf8108d
commit c77d0a8e89
113 changed files with 366 additions and 434 deletions
+1 -3
View File
@@ -100,9 +100,7 @@ export_compose_env_from_file() {
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
if [[ -n "${SITE_ORIGIN:-}" ]]; then
NEXT_PUBLIC_CARPLACE_URL="${SITE_ORIGIN%/}/carplace"
fi
export NEXT_PUBLIC_CARPLACE_URL
-11
View File
@@ -1,11 +0,0 @@
#!/usr/bin/env bash
set -euo pipefail
ROOT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
source "${ROOT_DIR}/scripts/docker-prod-common.sh"
start_prod_services carplace
wait_for_healthy carplace
echo "Carplace is up and healthy."