Files
illusory-iotam/scripts/prod.start.sh
2026-03-27 20:06:38 +02:00

15 lines
161 B
Bash
Executable File

#!/bin/sh
APP_PATH=$1
if [ -z "$APP_PATH" ]; then
echo "Usage: prod.start.sh <app path>"
exit 1
fi
echo "Starting $APP_PATH"
cd $APP_PATH
pnpm run prod