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