2025-06-13 10:49:21 -04:00
|
|
|
#!/bin/bash
|
|
|
|
|
# shellcheck source=common.sh
|
|
|
|
|
# shellcheck disable=SC1091
|
|
|
|
|
source /immich-devcontainer/container-common.sh
|
|
|
|
|
|
2025-06-17 16:52:57 -04:00
|
|
|
log "Starting Nest API Server"
|
|
|
|
|
log ""
|
2025-06-13 10:49:21 -04:00
|
|
|
cd "${IMMICH_WORKSPACE}/server" || (
|
2025-06-17 16:52:57 -04:00
|
|
|
log "Immich workspace not found"
|
2025-06-13 10:49:21 -04:00
|
|
|
exit 1
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
while true; do
|
2025-06-17 16:52:57 -04:00
|
|
|
run_cmd node ./node_modules/.bin/nest start --debug "0.0.0.0:9230" --watch
|
|
|
|
|
log "Nest API Server crashed with exit code $?. Respawning in 3s ..."
|
2025-06-13 10:49:21 -04:00
|
|
|
sleep 3
|
|
|
|
|
done
|