24 lines
413 B
Bash
24 lines
413 B
Bash
#!/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."
|