• Update all GitHub workflow files to use pnpm instead of npm • Replace npm commands with pnpm equivalents in devcontainer scripts • Remove package-lock.json files and update to use pnpm-lock.yaml • Consolidate node version references to use server/.nvmrc
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 -- "$@"
|