Initial commit - BraceIQMed platform with frontend, API, and brace generator

This commit is contained in:
2026-01-29 14:34:05 -08:00
commit 745f9f827f
187 changed files with 534688 additions and 0 deletions

34
scripts/deploy.sh Normal file
View File

@@ -0,0 +1,34 @@
#!/bin/bash
# ============================================
# BraceIQMed - Deployment Script
# Run this on the EC2 server to deploy/update
# ============================================
set -e
echo "============================================"
echo "BraceIQMed Deployment"
echo "============================================"
# Change to repo directory
cd ~/braceiqmed
# Pull latest changes
echo "Pulling latest changes..."
git pull origin main
# Build and restart containers
echo "Building and restarting containers..."
docker compose build
docker compose up -d
# Show status
echo "============================================"
echo "Deployment complete!"
echo "============================================"
docker compose ps
# Show recent logs
echo ""
echo "Recent logs:"
docker compose logs --tail=20