Vendored Augani/openreel-video (MIT) into services/editor and wired it to the MAM. Editor runs as its own container on port 47435. Library assets pull in via ?asset=<uuid>; render exports route back via POST /api/v1/upload/simple. Sidebar Editor link on every page; Edit button on every preview modal. See services/editor/INTEGRATION.md for the patch map.
21 lines
450 B
Bash
Executable file
21 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
|