Files
immich/server/bin/immich-dev
2026-02-01 18:18:35 +00:00

10 lines
261 B
Bash
Executable File

#!/usr/bin/env bash
if [[ "$IMMICH_ENV" == "production" ]]; then
echo "This command can only be run in development environments"
exit 1
fi
cd /usr/src/app || exit
exec pnpm --filter immich exec nest start --no-shell --debug "0.0.0.0:9230" --watch -- "$@"