#!/bin/bash # Electron Test App Setup Script echo "🚀 Setting up Electron Test App..." cd electron-test # Install dependencies echo "📦 Installing dependencies..." npm install # Build web assets echo "🔨 Building web assets..." npm run build-web echo "✅ Electron test app setup complete!" echo "" echo "Next steps:" echo "1. Run Electron app: npm start" echo "2. Run in dev mode: npm run dev" echo "3. Build and run: npm run electron"