cli
status & logs
Check deployment status and stream live logs.
runix status#
Show the current status of your deployments. Without arguments, it lists all deployments. Pass a service name to filter.
List all deployments
bash
$ runix status
NAME TYPE STATUS INSTANCE URL
backend web-service running standard backend-a1b2.runixcloud.dev
db postgresql running starter —
worker background running starter —Filter by name
bash
$ runix status backend
NAME TYPE STATUS INSTANCE URL
backend web-service running standard backend-a1b2.runixcloud.dev| Argument | Required | Description |
|---|---|---|
| `name` | No | Filter by service name, repo name, or deployment ID prefix |
Status Values#
| Status | Meaning |
|---|---|
| `queued` | Deployment is waiting to be built |
| `building` | Docker image is being built |
| `running` | Service is live and healthy |
| `failed` | Build or startup failed — check logs |
| `stopped` | Service has been manually stopped or destroyed |
runix logs#
Stream live logs from a running deployment. Logs are shown in real-time and include both stdout and stderr.
bash
$ runix logs backend
[2024-03-15 10:23:01] Server listening on port 3000
[2024-03-15 10:23:02] Connected to database
[2024-03-15 10:23:15] GET /api/health 200 2ms| Argument | Required | Description |
|---|---|---|
| `name` | Yes | Service name, repo name, or deployment ID |
Press Ctrl+C to stop streaming logs. The service keeps running.