Prisma ORM 8 is here.Read the docs

start

Prisma CLI v7

Start one or more stopped local Prisma Postgres servers

The prisma dev start command starts existing local Prisma Postgres instances in the background.

Usage

prisma dev start [options] <name>

Arguments

ArgumentDescription
<name>Name(s) or glob pattern(s) of the server(s) to start

Options

OptionDescriptionDefault
--debugEnable debug loggingfalse

Examples

Start a specific database

bunx prisma dev start mydb

Start multiple databases with a pattern

Start all databases starting with mydb:

bunx prisma dev start mydb*

On this page