mirror of
https://github.com/immich-app/immich.git
synced 2025-08-11 09:16:31 -04:00
Conflict Missing dependency gitignore Cli dockerfile Exiftool optional fix Update pnpm version update devcontainer for pnpm
10 lines
244 B
Bash
Executable File
10 lines
244 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
|
|
pnpm --filter immich exec nest start --debug "0.0.0.0:9230" --watch -- "$@"
|