- Fix pipeline granularity: add market_year to cleaned/serving SQL models - Add DuckDB data access layer with async query functions (analytics.py) - Build Chart.js dashboard: supply/demand, STU ratio, top producers, YoY table - Add country comparison page with multi-select picker - Replace items CRUD with read-only commodity API (list, metrics, countries, CSV) - Configure BeanFlows plan tiers (Free/Starter/Pro) with feature gating - Rewrite public pages for coffee market intelligence positioning - Remove boilerplate items schema, update health check for DuckDB - Add test suite: 139 tests passing (dashboard, API, billing) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
23 lines
393 B
Bash
23 lines
393 B
Bash
#!/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!"
|