Skip to content

Commit 1382a7d

Browse files
fix(cli): rename neondb to get-db
1 parent 3a9075f commit 1382a7d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

apps/cli/src/helpers/database-providers/neon-setup.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ async function setupWithNeonDb(
125125
) {
126126
try {
127127
const s = spinner();
128-
s.start("Creating Neon database using neondb...");
128+
s.start("Creating Neon database using get-db...");
129129

130130
const targetApp = backend === "self" ? "apps/web" : "apps/server";
131131
const targetDir = path.join(projectDir, targetApp);
@@ -145,7 +145,7 @@ async function setupWithNeonDb(
145145

146146
return true;
147147
} catch (error) {
148-
consola.error(pc.red("Failed to create database with neondb"));
148+
consola.error(pc.red("Failed to create database with get-db"));
149149
throw error;
150150
}
151151
}
@@ -208,7 +208,7 @@ export async function setupNeonPostgres(
208208
message: "Choose your Neon setup method:",
209209
options: [
210210
{
211-
label: "Quick setup with neondb",
211+
label: "Quick setup with get-db",
212212
value: "neondb",
213213
hint: "fastest, no auth required",
214214
},

0 commit comments

Comments
 (0)