- 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]>
19 lines
363 B
Bash
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
|