# DEPLOY_STILL_RUNNING

**What it means.** The app is still deploying. This command stopped watching, but the platform is still working on it.

**What to do.** Wait a few minutes, then run `npx uarpie status` to see whether it went live. Do not start another deploy: one is already running and a second would be refused.

- HTTP status: 200
- Retryable after applying the fix: no

Every failure from the CLI or an MCP tool has this shape:

```json
{
  "ok": false,
  "code": "DEPLOY_STILL_RUNNING",
  "message": "The app is still deploying. This command stopped watching, but the platform is still working on it.",
  "fix": "Wait a few minutes, then run `npx uarpie status` to see whether it went live. Do not start another deploy: one is already running and a second would be refused.",
  "file": "<where to edit, when known>",
  "retryable": false,
  "docs": "https://docs.uarpie.app/errors/DEPLOY_STILL_RUNNING"
}
```

Apply `fix` (edit `file` when it is given), then run the same command again.
