#!/bin/bash set -euo pipefail echo "Starting services with Docker Compose..." docker compose build --no-cache backend frontend docker compose up -d --force-recreate backend frontend echo "Backend: http://localhost:8000/health" echo "Frontend: http://localhost:8501"