Monorepo for Aesthetic.Computer aesthetic.computer
at main 31 lines 674 B view raw
1#!/usr/bin/env fish 2 3# Quick setup script for painting tools 4# Run: ./setup.fish 5 6echo "🎨 Setting up painting tools..." 7echo "" 8 9# Check if .env exists 10if not test -f .env 11 echo "📝 Creating .env from template..." 12 cp .env.template .env 13 echo "⚠️ Please edit .env and add your credentials" 14 echo "" 15end 16 17# Install dependencies 18echo "📦 Installing dependencies..." 19npm install 20echo "" 21 22echo "✅ Setup complete!" 23echo "" 24echo "🔍 Quick start commands:" 25echo "" 26echo " npm run inspect:mongodb -- --stats" 27echo " npm run inspect:spaces -- --list" 28echo " npm run inspect:api -- --tv" 29echo "" 30echo "💡 See README.md for full documentation" 31echo ""