#!/usr/bin/env bash
# ==============================================================================
# Barlas Execution OS — Local Mac Web App Launcher
# ==============================================================================

echo "🌐 Launching Barlas Execution OS Local Web App..."
echo "------------------------------------------------------------"
echo "💡 Opening http://localhost:4200/workspace in default browser..."

if command -v open >/dev/null 2>&1; then
  open "http://localhost:4200/workspace"
elif command -v xdg-open >/dev/null 2>&1; then
  xdg-open "http://localhost:4200/workspace"
fi
