gbserver/deploy.sh

13 lines
212 B
Bash
Raw Normal View History

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.
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