This repository has been archived on 2026-02-15. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
breakpilot-pwa/scripts/start-content-services.sh
Benjamin Admin 21a844cb8a fix: Restore all files lost during destructive rebase
A previous `git pull --rebase origin main` dropped 177 local commits,
losing 3400+ files across admin-v2, backend, studio-v2, website,
klausur-service, and many other services. The partial restore attempt
(660295e2) only recovered some files.

This commit restores all missing files from pre-rebase ref 98933f5e
while preserving post-rebase additions (night-scheduler, night-mode UI,
NightModeWidget dashboard integration).

Restored features include:
- AI Module Sidebar (FAB), OCR Labeling, OCR Compare
- GPU Dashboard, RAG Pipeline, Magic Help
- Klausur-Korrektur (8 files), Abitur-Archiv (5+ files)
- Companion, Zeugnisse-Crawler, Screen Flow
- Full backend, studio-v2, website, klausur-service
- All compliance SDKs, agent-core, voice-service
- CI/CD configs, documentation, scripts

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-09 09:51:32 +01:00

103 lines
3.5 KiB
Bash
Executable File

#!/bin/bash
# BreakPilot Content Service - Startup Script
# Starts all Content Service components
set -e
echo "
╔════════════════════════════════════════════════════════╗
║ 🎓 BreakPilot Content Service - Startup ║
║ 📦 Starting Educational Content Platform... ║
╚════════════════════════════════════════════════════════╝
"
# Check Docker
if ! command -v docker &> /dev/null; then
echo "❌ Docker not found. Please install Docker first."
exit 1
fi
if ! command -v docker-compose &> /dev/null; then
echo "❌ docker-compose not found. Please install docker-compose first."
exit 1
fi
# Create network if not exists
if ! docker network inspect breakpilot-pwa-network &> /dev/null; then
echo "📡 Creating Docker network..."
docker network create breakpilot-pwa-network
fi
# Start services
echo "🚀 Starting Content Services..."
echo ""
docker-compose \
-f docker-compose.yml \
-f docker-compose.content.yml \
up -d
echo ""
echo "⏳ Waiting for services to be healthy..."
sleep 10
# Check service health
echo ""
echo "🔍 Checking service status..."
echo ""
# Content Service
if curl -f http://localhost:8002/health &> /dev/null; then
echo "✅ Content Service API - http://localhost:8002"
else
echo "⚠️ Content Service API - Starting..."
fi
# MinIO
if curl -f http://localhost:9000/minio/health/live &> /dev/null; then
echo "✅ MinIO Storage - http://localhost:9001 (UI)"
else
echo "⚠️ MinIO Storage - Starting..."
fi
# H5P Service
if curl -f http://localhost:8003/health &> /dev/null; then
echo "✅ H5P Service - http://localhost:8003"
else
echo "⚠️ H5P Service - Starting..."
fi
# Content DB
if docker exec breakpilot-pwa-content-db pg_isready -U breakpilot -d breakpilot_content &> /dev/null; then
echo "✅ Content Database - localhost:5433"
else
echo "⚠️ Content Database - Starting..."
fi
echo ""
echo "
╔════════════════════════════════════════════════════════╗
║ ✅ Content Services Started! ║
╠════════════════════════════════════════════════════════╣
║ ║
║ 📍 Content Service API: http://localhost:8002/docs ║
║ 📍 MinIO Console: http://localhost:9001 ║
║ 📍 H5P Editor: http://localhost:8003 ║
║ 📍 Content Database: localhost:5433 ║
║ ║
║ 📚 Setup Guide: CONTENT_SERVICE_SETUP.md ║
║ ║
╚════════════════════════════════════════════════════════╝
"
echo "💡 Quick Commands:"
echo ""
echo " View Logs: docker-compose -f docker-compose.content.yml logs -f"
echo " Stop Services: docker-compose -f docker-compose.content.yml down"
echo " Restart: docker-compose -f docker-compose.content.yml restart"
echo ""
echo "🎉 Ready to create educational content!"
echo ""