This commit is contained in:
2025-08-14 12:56:26 +02:00
parent 3657932051
commit 0310ecfb31
16 changed files with 5641 additions and 373 deletions

17
start.sh Executable file
View File

@@ -0,0 +1,17 @@
#!/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
# Start the development server
pnpm run dev -p 3010