34 lines
1.1 KiB
Bash
Executable File
34 lines
1.1 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# HERO Personal Agent Website - Development Server
|
|
# This script starts the development server with hot reload
|
|
|
|
echo "🚀 Starting HERO Personal Agent Website Development Server..."
|
|
echo "============================================================="
|
|
|
|
# Check if node_modules exists
|
|
if [ ! -d "node_modules" ]; then
|
|
echo "❌ Dependencies not installed. Please run './install.sh' first."
|
|
exit 1
|
|
fi
|
|
|
|
echo "🌐 Starting development server..."
|
|
echo "📍 Local URL: http://localhost:5173"
|
|
echo "📍 Network URL: http://0.0.0.0:5173"
|
|
echo ""
|
|
echo "💡 Tips:"
|
|
echo " - The server will automatically reload when you save files"
|
|
echo " - Press Ctrl+C to stop the server"
|
|
echo " - Edit files in src/ directory to see changes"
|
|
echo ""
|
|
echo "🎨 Key files to customize:"
|
|
echo " - src/pages/Home.jsx → Home page content"
|
|
echo " - src/pages/GetStarted.jsx → Pricing and signup"
|
|
echo " - src/App.css → Styles and animations"
|
|
echo " - src/assets/ → Replace with your images"
|
|
echo ""
|
|
|
|
# Start the development server
|
|
pnpm run dev --host
|
|
|