# ls (/docs/cli/dev/ls)

Location: CLI > dev > ls

The `prisma dev ls` command lists all available [local Prisma Postgres](/postgres/database/local-development) instances on your system.

Usage [#usage]

```bash
prisma dev ls [options]
```

Options [#options]

| Option    | Description          | Default |
| --------- | -------------------- | ------- |
| `--debug` | Enable debug logging | `false` |

Examples [#examples]

List all servers [#list-all-servers]

  

#### npm

```bash
npx prisma dev ls
```

#### pnpm

```bash
pnpm dlx prisma dev ls
```

#### yarn

```bash
yarn dlx prisma dev ls
```

#### bun

```bash
bunx --bun prisma dev ls
```

This shows all instances on your system with their current status and configuration.

## Related pages

- [`rm`](https://www.prisma.io/docs/cli/dev/rm): Remove local Prisma Postgres servers
- [`start`](https://www.prisma.io/docs/cli/dev/start): Start one or more stopped local Prisma Postgres servers
- [`stop`](https://www.prisma.io/docs/cli/dev/stop): Stop local Prisma Postgres servers