File size: 541 Bytes
e9c1d5a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/bin/bash
# scripts/deploy-dev.sh

set -e

echo "=== Deploying to Development Environment ==="

# Stop existing containers
docker-compose down

# Build and start services
docker-compose up --build -d

# Wait for services to be ready
echo "Waiting for services to start..."
sleep 30

# Health checks
echo "Checking service health..."
curl -f http://localhost:5001/health || echo "API health check failed"

echo "Development deployment completed!"
echo "API available at: http://localhost:5001"
echo "Documentation at: http://localhost:8080"