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

24
install.sh Executable file
View File

@@ -0,0 +1,24 @@
#!/bin/bash
# HERO Personal Agent Website - Installation Script
# This script installs all dependencies using pnpm
# Check if Node.js is installed
if ! command -v node &> /dev/null; then
echo "❌ Node.js is not installed. Please install Node.js first."
exit 1
fi
# Check if pnpm is installed
if ! command -v pnpm &> /dev/null; then
echo "📦 Installing pnpm..."
npm install -g pnpm
fi
echo "📋 Node.js version: $(node --version)"
echo "📋 pnpm version: $(pnpm --version)"
# Install dependencies
echo "📦 Installing project dependencies..."
pnpm install