mirror of
https://github.com/immich-app/immich
synced 2025-11-14 17:36:12 +00:00
• Update all GitHub workflow files to use pnpm instead of npm • Replace npm commands with pnpm equivalents in devcontainer scripts • Remove package-lock.json files and update to use pnpm-lock.yaml • Consolidate node version references to use server/.nvmrc
18 lines
546 B
Bash
Executable file
18 lines
546 B
Bash
Executable file
#!/usr/bin/env sh
|
|
|
|
echo "Build dependencies for Immich Web"
|
|
cd /usr/src/app || exit
|
|
|
|
COUNT=0
|
|
UPSTREAM="${IMMICH_SERVER_URL:-http://immich-server:2283/}"
|
|
UPSTREAM="${UPSTREAM%/}"
|
|
until wget --spider --quiet "${UPSTREAM}/api/server/config" > /dev/null 2>&1; do
|
|
if [ $((COUNT % 10)) -eq 0 ]; then
|
|
echo "Waiting for $UPSTREAM to start..."
|
|
fi
|
|
COUNT=$((COUNT + 1))
|
|
sleep 1
|
|
done
|
|
echo "Connected to $UPSTREAM, starting Immich Web..."
|
|
pnpm --filter @immich/sdk build
|
|
pnpm --filter immich-web exec vite dev --host 0.0.0.0 --port 3000
|