Files
Clawd BotandClaude Opus 4.6 ca9b510922 chore: align with upstream openclaw/openclaw and overlay local additions
- Reset master to upstream/main (16,697 commits)
- Overlay 2,271 local-only files (skills, tools, workspace, configs, apps)
- Restore IDENTITY.md and USER.md templates
- Build verified, gateway running, Discord working

Co-Authored-By: Claude Opus 4.6 <[email protected]>
2026-03-03 07:40:46 +01:00

19 lines
363 B
Bash

#!/usr/bin/env bash
set -euo pipefail
cd "$(dirname "$0")"
# Check if dependencies are installed
if [ ! -d "node_modules" ]; then
echo "📦 Installing dependencies..."
pnpm install
fi
# Set default bind host if not set
export BIND_HOST="${BIND_HOST:-127.0.0.1}"
export PORT="${PORT:-3030}"
# Start server
echo "🎤 Starting Voice Surface..."
pnpm start