You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

21 lines
448 B

#!/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"