immich/server/bin/immich-dev
2026-02-02 15:06:40 +01:00

9 lines
245 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
pnpm --filter immich exec nest start --debug "0.0.0.0:9230" --watch -- "$@"