chore: update dev paths to /Volumes/Development

Migrated hardcoded paths from ~/Development to /Volumes/Development.
This commit is contained in:
rcourtman
2026-02-07 19:20:37 +00:00
parent 839ed5cc1e
commit 3d0082c07e
3 changed files with 5 additions and 5 deletions

View File

@@ -60,7 +60,7 @@ if curl -s -o /dev/null http://127.0.0.1:5173/ 2>/dev/null; then
echo -e "${GREEN}✓ Running${NC}"
else
echo -e "${RED}✗ NOT RUNNING${NC}"
echo " Fix: cd \${PULSE_REPOS_DIR:-~/Development/pulse/repos}/pulse/frontend-modern && npm run dev"
echo " Fix: cd \${PULSE_REPOS_DIR:-/Volumes/Development/pulse/repos}/pulse/frontend-modern && npm run dev"
fi
# Check AI status

View File

@@ -126,7 +126,7 @@ VERIFIED_BUG_FIXES=$(echo "$VERIFIED_BUG_FIXES" | sed '/^$/d' | head -15)
echo "Collected diffs from key areas"
# Auto-load API keys from local secrets if not already set
PULSE_SECRETS_DIR="${PULSE_SECRETS_DIR:-$HOME/Development/pulse/secrets}"
PULSE_SECRETS_DIR="${PULSE_SECRETS_DIR:-/Volumes/Development/pulse/secrets}"
if [ -z "${ANTHROPIC_API_KEY:-}" ] && [ -f "${PULSE_SECRETS_DIR}/anthropic/api_key" ]; then
ANTHROPIC_API_KEY=$(cat "${PULSE_SECRETS_DIR}/anthropic/api_key")
export ANTHROPIC_API_KEY

View File

@@ -273,8 +273,8 @@ mkdir -p internal/api/frontend-modern/dist
touch internal/api/frontend-modern/dist/index.html
# Check if Pro module is available and use it for full audit logging support
# Use PULSE_REPOS_DIR env var or default to ~/Development/pulse/repos
PULSE_REPOS_DIR="${PULSE_REPOS_DIR:-$HOME/Development/pulse/repos}"
# Use PULSE_REPOS_DIR env var or default to /Volumes/Development/pulse/repos
PULSE_REPOS_DIR="${PULSE_REPOS_DIR:-/Volumes/Development/pulse/repos}"
PRO_MODULE_DIR="${PULSE_REPOS_DIR}/pulse-enterprise"
if [[ -d "${PRO_MODULE_DIR}" ]] && [[ ${HOT_DEV_USE_PRO:-true} == "true" ]]; then
log_info "Building Pro binary (includes persistent audit logging)..."
@@ -525,7 +525,7 @@ log_info "Starting backend file watcher..."
# Use the same build logic as the initial build
local build_success=0
PULSE_REPOS_DIR="${PULSE_REPOS_DIR:-$HOME/Development/pulse/repos}"
PULSE_REPOS_DIR="${PULSE_REPOS_DIR:-/Volumes/Development/pulse/repos}"
PRO_MODULE_DIR="${PULSE_REPOS_DIR}/pulse-enterprise"
if [[ -d "${PRO_MODULE_DIR}" ]] && [[ ${HOT_DEV_USE_PRO:-true} == "true" ]]; then
log_info "Building Pro binary..."