Initial microservices setup from artifacts

This commit is contained in:
Urtzi Alfaro
2025-07-17 13:09:24 +02:00
commit 347ff51bd7
200 changed files with 9559 additions and 0 deletions

18
scripts/deploy.sh Executable file
View File

@@ -0,0 +1,18 @@
#!/bin/bash
echo "🚀 Deploying Bakery Forecasting Platform..."
# Build and deploy all services
docker-compose build
docker-compose up -d
echo "Waiting for services to be healthy..."
sleep 30
# Check service health
echo "Checking service health..."
curl -f http://localhost:8000/health || echo "Gateway health check failed"
echo "✅ Deployment completed"
echo "Gateway: http://localhost:8000"
echo "API Docs: http://localhost:8000/docs"