Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion runpod/cli/groups/config/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
)
Expand Down
2 changes: 1 addition & 1 deletion runpod/cli/groups/project/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
2 changes: 1 addition & 1 deletion runpod/endpoint/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)


Expand Down
Loading