- #!/bin/bash
- # KirinCode Desktop Launcher (macOS)
- # Double-click this script or run from terminal
- set -e
- SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
- PROJECT_DIR="$SCRIPT_DIR/packages/desktop"
- echo "🦄 KirinCode Desktop starting..."
- cd "$PROJECT_DIR"
- bun run dev
|