This commit is contained in:
2026-06-04 17:59:53 +08:00
parent e6c27ac662
commit 0908495d6f
66 changed files with 4230 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
#!/bin/bash
set -e
echo "=== Hermes Live Show ==="
echo ""
echo "[1/3] Installing backend dependencies..."
cd backend
pip install -r requirements.txt -q
cd ..
echo "[2/3] Installing frontend dependencies..."
cd frontend
npm install --silent
cd ..
echo "[3/3] Initializing database..."
cd backend
python -m scripts.init_db
cd ..
echo ""
echo "Setup complete! Run ./scripts/start.sh to start the application."