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

# dbdock open

> Open the linked DBDock project in the cloud dashboard from your terminal, or print the URL for use over SSH.

```bash theme={null}
npx dbdock open [options]
```

Opens this project in the [DBDock Cloud](https://dbdock.xyz) dashboard in your browser. Useful right after a [`dbdock sync`](/cli/sync) to review what pushed.

## Options

| Option    | Description                                             |
| --------- | ------------------------------------------------------- |
| `--print` | Print the dashboard URL instead of launching a browser. |

## Examples

<CodeGroup>
  ```bash Open in browser theme={null}
  dbdock open
  # → Opening https://dbdock.xyz/...
  ```

  ```bash Print the URL (e.g. over SSH) theme={null}
  dbdock open --print
  ```
</CodeGroup>

<Info>
  `open` needs a linked project. If you see "No linked project," run [`dbdock init`](/cli/init) to link this directory first.
</Info>

## Related

<CardGroup cols={2}>
  <Card title="dbdock sync" icon="arrows-rotate" href="/cli/sync">
    Push before you open.
  </Card>

  <Card title="DBDock Cloud" icon="cloud" href="/cloud/overview">
    What's in the dashboard.
  </Card>
</CardGroup>
