Files
augani--openreel-video/start.sh
T
wehub-resource-sync f4f9ec64b9
CI / Test & Lint (push) Failing after 0s
CI / Build (push) Has been skipped
chore: import upstream snapshot with attribution
2026-07-13 12:30:30 +08:00

22 lines
450 B
Bash
Executable File

#!/bin/bash
# OpenReel Video - Local Development Start Script
set -e
echo "=== OpenReel Video - Dev Setup ==="
# Install dependencies if needed
if [ ! -d "node_modules" ]; then
echo "Installing dependencies..."
pnpm install
fi
# Build WASM modules if not built
if [ ! -d "packages/core/src/wasm/build" ]; then
echo "Building WASM modules..."
pnpm build:wasm
fi
echo "Starting dev server at http://localhost:5174"
pnpm dev -- --port 5174