Files
mitus/media/ctrl/server.sh
2026-04-09 18:19:03 -03:00

16 lines
475 B
Bash
Executable File

#!/bin/bash
# Build and run the media server (receiver).
# Run this on mcrndeb directly.
# Usage: ./server.sh [port]
set -euo pipefail
MEDIA_DIR="$(cd "$(dirname "$0")/.." && pwd)"
CARGO="${CARGO:-$HOME/.cargo/bin/cargo}"
LOG_DIR="$MEDIA_DIR/logs"
mkdir -p "$LOG_DIR"
"$CARGO" build -p cht-server --manifest-path "$MEDIA_DIR/Cargo.toml" 2>&1 | tee "$LOG_DIR/build-server.log"
if [ "${PIPESTATUS[0]}" -ne 0 ]; then exit 1; fi
exec "$MEDIA_DIR/target/debug/cht-server" "$@"