diff --git a/README.md b/README.md index 5bc5a2d8..7972eeb6 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 4888acfe..cae08c1b 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 e3bb0d10..b5df4a3f 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 d25b8cf5..cbdb83f9 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" )