Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions alchemy/bin/commands/util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,8 @@ async function createCloudflareGodToken() {
intro(pc.cyan("🧪 Create Cloudflare God Token"));

const apiKey = await password({
message: "Enter Cloudflare API Key",
message:
"Enter Cloudflare Global API Key. It can be found in the cloudflare dashboard: https://dash.cloudflare.com/profile/api-tokens",
Comment on lines -144 to +145
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

How does this look in the CLI?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

image

link is clickable

});
if (isCancel(apiKey)) {
throw new CancelSignal();
Expand Down Expand Up @@ -252,7 +253,8 @@ async function createCloudflareProfileToken(input: { profile?: string }) {
}

const apiKey = await password({
message: "Enter Cloudflare API Key",
message:
"Enter Cloudflare Global API Key. It can be found in the cloudflare dashboard: https://dash.cloudflare.com/profile/api-tokens",
});
if (isCancel(apiKey)) {
throw new CancelSignal();
Expand Down
Loading