Adding new install script to script folder

This commit is contained in:
2026-07-02 16:28:11 -05:00
parent 3830ca395e
commit bc83792d7a
6 changed files with 788 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
#!/usr/bin/env bash
# Build and install Galaxy to /Applications
set -e
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
APP_DIR="$SCRIPT_DIR/build-and-install-to-applications"
# Install deps if needed
if [ ! -d "$APP_DIR/node_modules" ]; then
echo "Installing dependencies..."
cd "$APP_DIR" && yarn install --frozen-lockfile
fi
cd "$APP_DIR" && yarn --silent start