- Remove audit/internal/tui/ (~3000 LOC, bubbletea/lipgloss/reanimator deps) - Add /api/* REST+SSE endpoints: audit, SAT (nvidia/memory/storage/cpu), services, network, export, tools, live metrics stream - Add async job manager with SSE streaming for long-running operations - Add platform.SampleLiveMetrics() for live fan/temp/power/GPU polling - Add multi-page web UI (vanilla JS): Dashboard, Metrics charts, Tests, Burn-in, Network, Services, Export, Tools - Add bee-desktop.service: openbox + Xorg + Chromium opening http://localhost/ - Add openbox/tint2/xorg/xinit/xterm/chromium to ISO package list - Update .profile, bee.sh, and bible-local docs Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
19 lines
654 B
Bash
19 lines
654 B
Bash
export PATH="$PATH:/usr/local/bin:/opt/rocm/bin:/opt/rocm/sbin"
|
|
|
|
# Print web UI URLs on the local console at login.
|
|
if [ -z "${SSH_CONNECTION:-}" ] \
|
|
&& [ -z "${SSH_TTY:-}" ]; then
|
|
echo "Bee live environment ready."
|
|
echo ""
|
|
echo " Web UI (local): http://localhost/"
|
|
# Print IP addresses for remote access
|
|
_ips=$(ip -4 addr show scope global 2>/dev/null | awk '/inet /{print $2}' | cut -d/ -f1)
|
|
for _ip in $_ips; do
|
|
echo " Web UI (remote): http://$_ip/"
|
|
done
|
|
unset _ips _ip
|
|
echo ""
|
|
echo " Local desktop starts automatically on display :0"
|
|
echo " Kernel logs: Alt+F2 | Extra shell: Alt+F3"
|
|
fi
|