Skip to content

Commit

Permalink
Add link to project settings
Browse files Browse the repository at this point in the history
  • Loading branch information
arnauorriols committed Nov 16, 2023
1 parent 88ae76a commit b322d92
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/subcommands/deploy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ async function deploy(opts: DeployOpts): Promise<void> {
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)
Expand All @@ -137,7 +137,11 @@ async function deploy(opts: DeployOpts): Promise<void> {
} 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 {
Expand Down

0 comments on commit b322d92

Please sign in to comment.