From 31be802e7e996c2b97f50544db355c7b6e8a2d81 Mon Sep 17 00:00:00 2001 From: Aman Varshney Date: Wed, 23 Jul 2025 23:44:04 +0530 Subject: [PATCH] chore(cli): Update prisma setup options labels and hints --- .changeset/tricky-rockets-visit.md | 5 +++++ .../src/helpers/database-providers/prisma-postgres-setup.ts | 6 +++--- 2 files changed, 8 insertions(+), 3 deletions(-) create mode 100644 .changeset/tricky-rockets-visit.md 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)", }); }