45 lines
1.2 KiB
Bash
Executable File
45 lines
1.2 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
REPO_ROOT="${1:-$(cd "$SCRIPT_DIR/../.." && pwd)}"
|
|
PUBLISH_DIR="${2:-$REPO_ROOT/deploy/publish/chgrid}"
|
|
BASE_PATH="${3:-/chgrid/}"
|
|
CLIENT_DIR="$REPO_ROOT/client"
|
|
PHP_PROXY_DIR="$REPO_ROOT/deploy/php"
|
|
PUBLIC_HTACCESS_SRC="$REPO_ROOT/deploy/apache/chgrid-public-htaccess"
|
|
|
|
if [[ ! -d "$CLIENT_DIR" ]]; then
|
|
echo "error: client directory not found: $CLIENT_DIR" >&2
|
|
exit 1
|
|
fi
|
|
|
|
if ! command -v rsync >/dev/null 2>&1; then
|
|
echo "error: rsync is required but not found in PATH" >&2
|
|
exit 1
|
|
fi
|
|
|
|
cd "$CLIENT_DIR"
|
|
npm install
|
|
VITE_BASE_PATH="$BASE_PATH" npm run build
|
|
|
|
mkdir -p "$PUBLISH_DIR"
|
|
rsync -a --delete dist/ "$PUBLISH_DIR/"
|
|
|
|
if [[ -d "$PHP_PROXY_DIR" ]]; then
|
|
rsync -a "$PHP_PROXY_DIR/" "$PUBLISH_DIR/"
|
|
fi
|
|
|
|
if [[ -f "$PUBLIC_HTACCESS_SRC" ]]; then
|
|
cp "$PUBLIC_HTACCESS_SRC" "$PUBLISH_DIR/.htaccess"
|
|
fi
|
|
|
|
# Normalize publish permissions for restrictive shared-host PHP handlers.
|
|
# - Directories must be executable/traversable.
|
|
# - PHP/static files must not be group-writable.
|
|
find "$PUBLISH_DIR" -type d -exec chmod 755 {} +
|
|
find "$PUBLISH_DIR" -type f -exec chmod 644 {} +
|
|
|
|
echo "client deploy complete: $PUBLISH_DIR"
|
|
echo "client base path: $BASE_PATH"
|