Datei-Struktur ordentlich bereinigt

This commit is contained in:
2025-09-24 19:29:16 +00:00
parent fbed816204
commit ef4ab9e800
98 changed files with 247 additions and 1024 deletions

View File

@@ -34,7 +34,7 @@ fi
# Build backend
echo "🔨 Building backend image..."
docker build -t "$BACKEND_IMAGE" ./nodejs-version/backend
docker build -t "$BACKEND_IMAGE" ./backend
# Build frontend (with production API URL)
echo "🔨 Building frontend image..."
@@ -42,12 +42,12 @@ if [ -n "$API_BASE_URL" ]; then
docker build \
--build-arg VITE_API_BASE_URL="$API_BASE_URL" \
-t "$FRONTEND_IMAGE" \
./nodejs-version/frontend
./frontend
else
docker build \
--build-arg VITE_API_BASE_URL="https://${DOMAIN:-yourdomain.com}/api" \
-t "$FRONTEND_IMAGE" \
./nodejs-version/frontend
./frontend
fi
# Push images