mirror of
https://github.com/immich-app/immich.git
synced 2026-05-26 17:42:32 -04:00
f33e1ad94c
Relocate scripts, and PATH updates
10 lines
245 B
Bash
Executable File
10 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 -- "$@"
|