merge: SOPS migration + Python supervisor + docs (3 repos)

This commit is contained in:
Deeman
2026-02-26 12:15:35 +01:00
22 changed files with 1244 additions and 370 deletions

View File

@@ -1,22 +0,0 @@
#!/bin/bash
set -e
# BeanFlows Deployment Script
echo "🚀 Deploying BeanFlows..."
# Pull latest code
git pull origin main
# Build and restart containers
docker compose build
docker compose up -d
# Run migrations
docker compose exec app uv run python -m beanflows.migrations.migrate
# Health check
sleep 5
curl -f http://localhost:5000/health || exit 1
echo "✅ Deployment complete!"