immich/server/bin/immich-dev
Min Idzelis f33e1ad94c
feat: relocate scripts, PATH update (#20002)
Relocate scripts, and PATH updates
2025-07-18 11:19:06 -04:00

9 lines
245 B
Bash
Executable file

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