mobux 0.6.2

A touch-friendly tmux web UI for unhinged people who run terminal sessions from their phone while walking the dog
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env bash
# Start the speaches STT container on port 5200 (host) → 8000 (container).
# Uses --replace so re-running is idempotent.
set -euo pipefail
MOBUX_STT_IMAGE="${MOBUX_STT_IMAGE:-ghcr.io/speaches-ai/speaches:latest-cpu}"
MOBUX_STT_PORT="${MOBUX_STT_PORT:-5200}"
podman run -d \
  --replace \
  --name mobux-stt \
  -p "${MOBUX_STT_PORT}:8000" \
  -v mobux-stt-models:/home/ubuntu/.cache/huggingface \
  "$MOBUX_STT_IMAGE"