Fix hardcoded paths after workspace restructure

Update all hardcoded paths from ~/AI/secrets/* to ~/chorus/business/secrets/*
and ~/AI/projects/* to ~/chorus/project-queues/active/* in WHOOSH project files
after workspace reorganization.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
anthonyrawlins
2025-08-05 11:12:03 +10:00
parent b6bff318d9
commit 0e9844ef13
2 changed files with 62 additions and 10 deletions

View File

@@ -1,22 +1,22 @@
#!/bin/bash
# Push Hive images to local registry for swarm deployment
# Push WHOOSH images to local registry for swarm deployment
set -e
LOCAL_REGISTRY="registry.home.deepblack.cloud"
REGISTRY_PORT="5000"
NAMESPACE="tony"
BACKEND_IMAGE="hive-backend"
FRONTEND_IMAGE="hive-frontend"
BACKEND_IMAGE="whoosh-backend"
FRONTEND_IMAGE="whoosh-frontend"
# Registry authentication
REGISTRY_USERNAME="tony"
REGISTRY_PASSWORD_FILE="/home/tony/AI/secrets/passwords_and_tokens/tony-pass"
REGISTRY_PASSWORD_FILE="/home/tony/chorus/business/secrets/tony-pass"
echo "🏗️ Building and pushing Hive images to local registry..."
echo "🏗️ Building and pushing WHOOSH images to local registry..."
# Change to hive directory
# Change to whoosh directory
cd "$(dirname "$0")"
# Login to registry
@@ -33,15 +33,15 @@ echo "🔨 Building images with docker compose..."
docker compose -f docker-compose.swarm.yml build
# Get the actual image names from docker compose
BACKEND_COMPOSE_IMAGE=$(docker compose -f docker-compose.swarm.yml config | grep "image.*hive-backend" | cut -d: -f2- | xargs)
FRONTEND_COMPOSE_IMAGE=$(docker compose -f docker-compose.swarm.yml config | grep "image.*hive-frontend" | cut -d: -f2- | xargs)
BACKEND_COMPOSE_IMAGE=$(docker compose -f docker-compose.swarm.yml config | grep "image.*whoosh-backend" | cut -d: -f2- | xargs)
FRONTEND_COMPOSE_IMAGE=$(docker compose -f docker-compose.swarm.yml config | grep "image.*whoosh-frontend" | cut -d: -f2- | xargs)
echo "📦 Found backend image: $BACKEND_COMPOSE_IMAGE"
echo "📦 Found frontend image: $FRONTEND_COMPOSE_IMAGE"
# Tag and push backend with v2
echo "📦 Tagging and pushing backend image..."
LOCAL_BACKEND_IMAGE=$(docker images --format "table {{.Repository}}:{{.Tag}}" | grep hive.*backend | head -1)
LOCAL_BACKEND_IMAGE=$(docker images --format "table {{.Repository}}:{{.Tag}}" | grep whoosh.*backend | head -1)
if [[ -n "$LOCAL_BACKEND_IMAGE" ]]; then
docker tag "$LOCAL_BACKEND_IMAGE" "${LOCAL_REGISTRY}/${NAMESPACE}/${BACKEND_IMAGE}:v2"
fi
@@ -49,7 +49,7 @@ docker push "${LOCAL_REGISTRY}/${NAMESPACE}/${BACKEND_IMAGE}:v2"
# Tag and push frontend with v2
echo "📦 Tagging and pushing frontend image..."
LOCAL_FRONTEND_IMAGE=$(docker images --format "table {{.Repository}}:{{.Tag}}" | grep hive.*frontend | head -1)
LOCAL_FRONTEND_IMAGE=$(docker images --format "table {{.Repository}}:{{.Tag}}" | grep whoosh.*frontend | head -1)
if [[ -n "$LOCAL_FRONTEND_IMAGE" ]]; then
docker tag "$LOCAL_FRONTEND_IMAGE" "${LOCAL_REGISTRY}/${NAMESPACE}/${FRONTEND_IMAGE}:v2"
fi