@@ -73,11 +73,11 @@ export async function handleAnonymousDeployment(
73
73
if ( deployment . kind === "first" ) {
74
74
logMessage (
75
75
ctx ,
76
- "This command, `npx convex dev`, will run your deployment and update it with the function you write in the `convex/` directory." ,
76
+ "This command, `npx convex dev`, will run your Convex backend locally and update it with the function you write in the `convex/` directory." ,
77
77
) ;
78
78
logMessage (
79
79
ctx ,
80
- "Use `npx convex dashboard` to view and interact with your deployment from a web UI." ,
80
+ "Use `npx convex dashboard` to view and interact with your project from a web UI." ,
81
81
) ;
82
82
logMessage (
83
83
ctx ,
@@ -86,7 +86,7 @@ export async function handleAnonymousDeployment(
86
86
ensureUuidForAnonymousUser ( ctx ) ;
87
87
if ( process . stdin . isTTY ) {
88
88
const result = await promptYesNo ( ctx , {
89
- message : "Got it? Let's get started! " ,
89
+ message : "Continue? " ,
90
90
default : true ,
91
91
} ) ;
92
92
if ( ! result ) {
@@ -249,7 +249,7 @@ async function chooseDeployment(
249
249
if ( existing === undefined ) {
250
250
logWarning (
251
251
ctx ,
252
- `Could not find deployment with name ${ options . deploymentName } !` ,
252
+ `Could not find project with name ${ options . deploymentName } !` ,
253
253
) ;
254
254
} else {
255
255
return {
@@ -260,13 +260,13 @@ async function chooseDeployment(
260
260
}
261
261
}
262
262
if ( deployments . length === 0 ) {
263
- logMessage ( ctx , "Let's set up your first deployment ." ) ;
263
+ logMessage ( ctx , "Let's set up your first project ." ) ;
264
264
return await promptForNewDeployment ( ctx , [ ] ) ;
265
265
}
266
266
267
267
if ( options . chosenConfiguration === "new" ) {
268
268
const deploymentName = await promptString ( ctx , {
269
- message : "Choose a name for your new deployment :" ,
269
+ message : "Choose a name for your new project :" ,
270
270
default : path . basename ( process . cwd ( ) ) ,
271
271
} ) ;
272
272
const uniqueName = await getUniqueName (
@@ -282,7 +282,7 @@ async function chooseDeployment(
282
282
}
283
283
284
284
const newOrExisting = await promptSearch ( ctx , {
285
- message : "Which deployment would you like to use?" ,
285
+ message : "Which project would you like to use?" ,
286
286
choices : [
287
287
...( options . chosenConfiguration === "existing"
288
288
? [ ]
@@ -307,7 +307,7 @@ async function chooseDeployment(
307
307
return ctx . crash ( {
308
308
exitCode : 1 ,
309
309
errorType : "fatal" ,
310
- printedMessage : `Could not find deployment with name ${ newOrExisting } !` ,
310
+ printedMessage : `Could not find project with name ${ newOrExisting } !` ,
311
311
} ) ;
312
312
}
313
313
return {
@@ -381,7 +381,7 @@ async function getUniqueName(
381
381
return ctx . crash ( {
382
382
exitCode : 1 ,
383
383
errorType : "fatal" ,
384
- printedMessage : `Could not generate a unique name for your deployment , please choose a different name` ,
384
+ printedMessage : `Could not generate a unique name for your project , please choose a different name` ,
385
385
} ) ;
386
386
}
387
387
/**
0 commit comments