From 6d2928a2427f9d121211be8d34f5552cfc12ef0f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dean=20Qui=C3=B1anola?= Date: Fri, 27 Jun 2025 08:36:31 -0700 Subject: [PATCH] chore: www.runpod.io/console --> console.runpod.io --- README.md | 2 +- runpod/cli/groups/config/commands.py | 2 +- runpod/cli/groups/project/commands.py | 2 +- runpod/endpoint/helpers.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index b04c86a9..2d45492c 100644 --- a/README.md +++ b/README.md @@ -73,7 +73,7 @@ def is_even(job): runpod.serverless.start({"handler": is_even}) ``` -Make sure that this file is ran when your container starts. This can be accomplished by calling it in the docker command when you set up a template at [runpod.io/console/serverless/user/templates](https://www.runpod.io/console/serverless/user/templates) or by setting it as the default command in your Dockerfile. +Make sure that this file is ran when your container starts. This can be accomplished by calling it in the docker command when you set up a template at [console.runpod.io/serverless/user/templates](https://console.runpod.io/serverless/user/templates) or by setting it as the default command in your Dockerfile. See our [blog post](https://www.runpod.io/blog/serverless-create-a-basic-api) for creating a basic Serverless API, or view the [details docs](https://docs.runpod.io/serverless-ai/custom-apis) for more information. diff --git a/runpod/cli/groups/config/commands.py b/runpod/cli/groups/config/commands.py index 21ecc54f..271bc7e6 100644 --- a/runpod/cli/groups/config/commands.py +++ b/runpod/cli/groups/config/commands.py @@ -35,7 +35,7 @@ def config_wizard(api_key, profile, check): if api_key is None: click.echo("Please enter your RunPod API Key.") - click.echo("You can find it at https://www.runpod.io/console/user/settings") + click.echo("You can find it at https://console.runpod.io/user/settings") api_key = click.prompt( " > RunPod API Key", hide_input=False, confirmation_prompt=False ) diff --git a/runpod/cli/groups/project/commands.py b/runpod/cli/groups/project/commands.py index 4cb3445e..176165da 100644 --- a/runpod/cli/groups/project/commands.py +++ b/runpod/cli/groups/project/commands.py @@ -47,7 +47,7 @@ def new_project_wizard(project_name, model_type, model_name, init_current_dir): if len(network_volumes) == 0: click.echo("You do not have any network volumes.") click.echo( - "Please create a network volume (https://runpod.io/console/user/storage) and try again." + "Please create a network volume (https://console.runpod.io/user/storage) and try again." ) # pylint: disable=line-too-long sys.exit(1) diff --git a/runpod/endpoint/helpers.py b/runpod/endpoint/helpers.py index 2bf49a9a..5b816ee6 100644 --- a/runpod/endpoint/helpers.py +++ b/runpod/endpoint/helpers.py @@ -8,7 +8,7 @@ "Expected `run_pod.api_key` to be initialized. " "You can solve this by setting `run_pod.api_key = 'your-key'. " "An API key can be generated at " - "https://runpod.io/console/user/settings" + "https://console.runpod.io/user/settings" )