A specialized skill to deploy the application while providing real-time log visibility to the user.
This skill allows Antigravity to deploy the application and stream the deployment logs directly to the user's terminal, ensuring full visibility of the process.
Instead of running long deployment commands blindly in the background, this skill uses a wrapper script (`deploy.sh`) to execute the deployment.
When you run this skill, you MUST use the `run_command` tool to execute the deployment script. The `run_command` tool streams standard output (stdout) and standard error (stderr) directly to the Antigravity session, meaning the user can watch the deployment happen in real-time.
By default, the `deploy.sh` script should contain the necessary commands. Ensure commands use the `-v` (verbose) flags where applicable to maximize output visibility.
```bash #!/bin/bash
echo "🚀 Starting Deployment Pipeline..."
echo "📦 Building Docker images..." docker-compose build --no-cache
echo "⬆️ Bringing up services..." docker-compose up -d
echo "✅ Deployment complete. Fetching live logs..." docker-compose logs -f --tail=50 ```