Skip to content

Commit ec2a881

Browse files
authored
chore: www.runpod.io/console --> console.runpod.io (#435)
1 parent c692603 commit ec2a881

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ def is_even(job):
7373
runpod.serverless.start({"handler": is_even})
7474
```
7575

76-
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.
76+
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.
7777

7878
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.
7979

runpod/cli/groups/config/commands.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def config_wizard(api_key, profile, check):
3535

3636
if api_key is None:
3737
click.echo("Please enter your Runpod API Key.")
38-
click.echo("You can find it at https://www.runpod.io/console/user/settings")
38+
click.echo("You can find it at https://console.runpod.io/user/settings")
3939
api_key = click.prompt(
4040
" > Runpod API Key", hide_input=False, confirmation_prompt=False
4141
)

runpod/cli/groups/project/commands.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def new_project_wizard(project_name, model_type, model_name, init_current_dir):
4747
if len(network_volumes) == 0:
4848
click.echo("You do not have any network volumes.")
4949
click.echo(
50-
"Please create a network volume (https://runpod.io/console/user/storage) and try again."
50+
"Please create a network volume (https://console.runpod.io/user/storage) and try again."
5151
) # pylint: disable=line-too-long
5252
sys.exit(1)
5353

runpod/endpoint/helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"Expected `run_pod.api_key` to be initialized. "
99
"You can solve this by setting `run_pod.api_key = 'your-key'. "
1010
"An API key can be generated at "
11-
"https://runpod.io/console/user/settings"
11+
"https://console.runpod.io/user/settings"
1212
)
1313

1414

0 commit comments

Comments
 (0)