mirror of
https://github.com/immich-app/immich.git
synced 2025-07-09 03:04:16 -04:00
19 lines
434 B
Bash
Executable File
19 lines
434 B
Bash
Executable File
#!/bin/bash
|
|
# shellcheck source=common.sh
|
|
# shellcheck disable=SC1091
|
|
source /immich-devcontainer/container-common.sh
|
|
|
|
log "Starting Nest API Server"
|
|
log ""
|
|
cd "${IMMICH_WORKSPACE}/server" || (
|
|
log "Immich workspace not found"
|
|
exit 1
|
|
)
|
|
|
|
CI=1 pnpm install
|
|
while true; do
|
|
run_cmd pnpm exec nest start --debug "0.0.0.0:9230" --watch
|
|
log "Nest API Server crashed with exit code $?. Respawning in 3s ..."
|
|
sleep 3
|
|
done
|