studio
Launches Prisma Studio, a visual database browser and editor for your data.
Options can be configured in project.json when defining the executor, or when invoking it. Read more about how to configure targets and executors here: https://nx.dev/reference/project-configuration#targets.
Info
Prisma Studio provides a web-based GUI to view and edit data in your database. It automatically opens in your default browser.
Examples
"prisma-studio": {
"executor": "@nx-tools/nx-prisma:studio",
}You may want to use a custom schema file:
"prisma-studio": {
"executor": "@nx-tools/nx-prisma:studio",
"options": {
"schema": "custom-file.prisma",
}
}Run Studio on a specific port:
"prisma-studio": {
"executor": "@nx-tools/nx-prisma:studio",
"options": {
"schema": "prisma/schema.prisma",
"port": 5556
}
}Options:
Prop
Type
Last updated on