diff --git a/src/subcommands/deploy.ts b/src/subcommands/deploy.ts index 571f952b..a68e9894 100644 --- a/src/subcommands/deploy.ts +++ b/src/subcommands/deploy.ts @@ -120,7 +120,7 @@ async function deploy(opts: DeployOpts): Promise { wait("").start().info("Performing dry run of deployment"); } const projectInfoSpinner = wait( - "Fetching project '${opts.project}' information...", + `Fetching project '${opts.project}' information...`, ).start(); const api = opts.token ? API.fromToken(opts.token) @@ -137,7 +137,11 @@ async function deploy(opts: DeployOpts): Promise { } catch (e) { error(e.message); } - projectCreationSpinner.succeed(`Created new project: ${opts.project}.`); + projectCreationSpinner.succeed(`Created new project '${opts.project}'.`); + wait({ text: "", indent: 3 }).start().info( + `You can configure the name, env vars, custom domains and more in https://dash.deno.com/projects/${project.name}/settings`, + ); + opts.prod = true; projectIsEmpty = true; } else {