Skip to content

Commit c692603

Browse files
authored
chore: RunPod --> Runpod (#436)
* chore: RunPod --> Runpod * chore: RunPod --> Runpod * chore: RunPod --> Runpod * missed
1 parent b2bf0ce commit c692603

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+91
-92
lines changed

.github/tape_collection/cli_config.tape

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ Enter
1010

1111
Sleep 4s
1212

13-
Type "<Paste your RunPod API Key here>"
13+
Type "<Paste your Runpod API Key here>"

.github/workflows/CI-e2e.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Performs a full test of the package within production environment.
22

3-
name: CI | End-to-End RunPod Python Tests
3+
name: CI | End-to-End Runpod Python Tests
44

55
on:
66
push:

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,14 +54,14 @@
5454

5555
### Fixed
5656

57-
- Edge case when using RunPod Serverless Core that return `None` for function output.
57+
- Edge case when using Runpod Serverless Core that return `None` for function output.
5858
- Missing Job ID for logging.
5959
- Concurrency modifier not adhering to the maximum concurrency.
6060
- Improved in progress job tracking and counting.
6161

6262
### Added
6363

64-
- Expanded RunPod Serverless Core testing.
64+
- Expanded Runpod Serverless Core testing.
6565

6666
---
6767

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2022 RunPod
3+
Copyright (c) 2025 Runpod
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ runpod.api_key = "your_runpod_api_key_found_under_settings"
9797

9898
### Endpoints
9999

100-
You can interact with RunPod endpoints via a `run` or `run_sync` method.
100+
You can interact with Runpod endpoints via a `run` or `run_sync` method.
101101

102102
```python
103103
endpoint = runpod.Endpoint("ENDPOINT_ID")

docs/cli/references/command_line_interface.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# RunPod CLI
1+
# Runpod CLI
22

33
Note: This CLI is not the same as runpodctl and provides a different set of features.
44

@@ -27,7 +27,7 @@ runpod --help
2727
```bash
2828
$ runpod config
2929
Profile [default]:
30-
RunPod API Key [None]: YOUR_RUNPOD_API_KEY
30+
Runpod API Key [None]: YOUR_RUNPOD_API_KEY
3131
```
3232

3333
### Launch Pod

docs/cli/references/projects.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Projects
22

3-
A RunPod project is a single folder that contains all the files needed to create and run a serverless worker.
3+
A Runpod project is a single folder that contains all the files needed to create and run a serverless worker.
44

55
## Convert existing worker to a project
66

@@ -10,4 +10,4 @@ You may need to update the default configuration within `runpod.toml` to match y
1010

1111
## Ignore Files and Folders
1212

13-
Create a `.runpodignore` file in the root of your project to ignore files and folders from being uploaded to the RunPod platform, the same file will also be used to ignore files that should not trigger an API server reload.
13+
Create a `.runpodignore` file in the root of your project to ignore files and folders from being uploaded to the Runpod platform, the same file will also be used to ignore files that should not trigger an API server reload.

docs/cli/references/runpod.toml.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# Project File
22

3-
Project files are stored as a `runpod.toml` file in the root of your project. This file contains all the information needed to run your project on the RunPod platform.
3+
Project files are stored as a `runpod.toml` file in the root of your project. This file contains all the information needed to run your project on the Runpod platform.
44

55
## Example
66

77
```toml
8-
# RunPod Project Configuration
8+
# Runpod Project Configuration
99

1010
title = "My Project"
1111

docs/cli/start_here.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# [BETA] | RunPod Python CLI Reference
1+
# [BETA] | Runpod Python CLI Reference
22

33
Note: This CLI is not the same as runpodctl and provides a different set of features.
44

@@ -10,13 +10,13 @@ Note: This CLI is not the same as runpodctl and provides a different set of feat
1010

1111
![runpod config](demos/config.gif)
1212

13-
Store your RunPod API key by running `runpod config`. Optionally you can also call the command with your API key `runpod config YOUR_API_KEY` or include the `--profile` to save multiple keys (stored under "default" profile is not specified) Credentials are stored in `~/.runpod/config.toml`.
13+
Store your Runpod API key by running `runpod config`. Optionally you can also call the command with your API key `runpod config YOUR_API_KEY` or include the `--profile` to save multiple keys (stored under "default" profile is not specified) Credentials are stored in `~/.runpod/config.toml`.
1414

1515
![runpod ssh add-key](demos/ssh.gif)
1616

1717
Add a SSH key to you account by running `runpod ssh add-key`. To specify and existing key pass in `--key` or `--key-file` to use a file. Keys are stored in `~/.runpod/ssh/`. If no key is specified a new one will be generated and stored.
1818

19-
## RunPod Project
19+
## Runpod Project
2020

2121
A "project" is the start of a serverless worker. To get started call `runpod project new`, you will be asked a few questions about the project you are creating, a project folder will be created. You can now navigate into your repo and run `runpod project start`.
2222

docs/getting_Started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Getting Started
22

3-
The RunPod python library is a powerful library providing SDK functions, API access, and CLI commands for interacting with the RunPod platform.
3+
The Runpod python library is a powerful library providing SDK functions, API access, and CLI commands for interacting with the Runpod platform.
44

55
## Credentials File
66

0 commit comments

Comments
 (0)