> ## Documentation Index
> Fetch the complete documentation index at: https://www.qovery.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# qovery status

> Check service and environment status

## Overview

Check the status of your services, environments, and deployments.

## Commands

### Check Status

Print the status of your application:

```bash theme={null}
qovery status
```

The command will interactively prompt you to select the service if no context is set.

## Options

| Flag     | Description |
| -------- | ----------- |
| `--help` | Show help   |

## Examples

### Check Service Status

```bash theme={null}
# Check the status of the current service
qovery status

# Example output:
# SERVICE          TYPE         STATUS    LAST UPDATE
# my-api           Application  Running   2 minutes ago
# postgres-main    Database     Running   1 hour ago
# redis-cache      Container    Running   30 minutes ago
```

## Status Values

| Status      | Description                  |
| ----------- | ---------------------------- |
| `BUILDING`  | Service is being built       |
| `DEPLOYING` | Service is being deployed    |
| `RUNNING`   | Service is running normally  |
| `READY`     | Service is ready and healthy |
| `WARNING`   | Service has warnings         |
| `ERROR`     | Service has errors           |
| `STOPPED`   | Service is stopped           |
| `DELETING`  | Service is being deleted     |

## Tips

<Tip>
  Run `qovery status` after deploying to quickly verify the state of your service.
</Tip>

## Related Commands

* [`qovery log`](/cli/commands/log) - View service logs
* [`qovery application`](/cli/commands/application) - Manage applications
* [`qovery environment`](/cli/commands/environment) - Manage environments
