2024-12-22 20:56:52 -03:00
|
|
|
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
|
|
|
|
echo "Deploying General Bots platform..."
|
|
|
|
|
2024-12-23 17:36:12 -03:00
|
|
|
# Create DB.
|
|
|
|
|
2025-03-08 12:10:13 -03:00
|
|
|
cargo run -p gb-migrations --bin migrations
|
2024-12-23 17:36:12 -03:00
|
|
|
|
2024-12-22 20:56:52 -03:00
|
|
|
echo "Deployment completed successfully!"
|
|
|
|
echo "Please wait for all pods to be ready..."
|
2024-12-23 17:36:12 -03:00
|
|
|
|