diff --git a/.changeset/tricky-rockets-visit.md b/.changeset/tricky-rockets-visit.md new file mode 100644 index 0000000..db1f2f4 --- /dev/null +++ b/.changeset/tricky-rockets-visit.md @@ -0,0 +1,5 @@ +--- +"create-better-t-stack": patch +--- + +Update prisma setup options labels and hints diff --git a/apps/cli/src/helpers/database-providers/prisma-postgres-setup.ts b/apps/cli/src/helpers/database-providers/prisma-postgres-setup.ts index a9674cd..63c2a9d 100644 --- a/apps/cli/src/helpers/database-providers/prisma-postgres-setup.ts +++ b/apps/cli/src/helpers/database-providers/prisma-postgres-setup.ts @@ -213,15 +213,15 @@ export async function setupPrismaPostgres(config: ProjectConfig) { { label: "Quick setup with create-db", value: "create-db", - hint: "Fastest, automated database creation", + hint: "Fastest, automated database creation (no auth)", }, ]; if (orm === "prisma") { setupOptions.push({ - label: "Custom setup with Prisma Console", + label: "Custom setup with Prisma Init", value: "custom", - hint: "More control - use existing Prisma account", + hint: "More control (requires auth)", }); }