From 80c6084f043586d05361a0c3ad790c7cee67ba6a Mon Sep 17 00:00:00 2001
From: danstotts-ops
Date: Sun, 2 Aug 2026 08:27:34 -0600
Subject: [PATCH 1/2] fix: point console links at their final URLs
The README links to legacy www console paths. Each one 301s to the console
subdomain today, so readers take an extra hop and link graphs record the
citation as indirect rather than direct.
Verified destinations, all returning 200:
/console/serverless/user/settings -> /serverless/user/settings
/console/serverless/user/endpoints -> /serverless
/console/hub/runpod-workers/... -> /hub/runpod-workers/...
Note the endpoints path resolves to /serverless, not to a like-named path on
the console subdomain, so this is not a mechanical prefix swap.
Co-Authored-By: Claude Opus 4.5
---
README.md | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/README.md b/README.md
index b4da1825c..f4b0fac20 100644
--- a/README.md
+++ b/README.md
@@ -6,7 +6,7 @@
-[](https://www.runpod.io/console/hub/runpod-workers/worker-comfyui)
+[](https://console.runpod.io/hub/runpod-workers/worker-comfyui)
---
@@ -152,8 +152,8 @@ Each object in the `output.images` array has the following structure:
To interact with your deployed RunPod endpoint:
-1. **Get API Key:** Generate a key in RunPod [User Settings](https://www.runpod.io/console/serverless/user/settings) (`API Keys` section).
-2. **Get Endpoint ID:** Find your endpoint ID on the [Serverless Endpoints](https://www.runpod.io/console/serverless/user/endpoints) page or on the `Overview` page of your endpoint.
+1. **Get API Key:** Generate a key in RunPod [User Settings](https://console.runpod.io/serverless/user/settings) (`API Keys` section).
+2. **Get Endpoint ID:** Find your endpoint ID on the [Serverless Endpoints](https://console.runpod.io/serverless) page or on the `Overview` page of your endpoint.
### Generate Image (Sync Example)
From 7e724c56b30f2971ea54bde5b042b7942e0e3394 Mon Sep 17 00:00:00 2001
From: danstotts-ops
Date: Sun, 2 Aug 2026 08:27:48 -0600
Subject: [PATCH 2/2] docs: correct brand casing to Runpod (drive-by)
The brand is written Runpod, not RunPod. The README carried 11 instances of the
old casing and none of the current one. This is the same correction already
merged in the docs repo.
Prose only. Every URL in the file already uses lowercase runpod, and the change
aborts if the string appears inside a link, so no identifiers or paths move.
Co-Authored-By: Claude Opus 4.5
---
README.md | 20 ++++++++++----------
1 file changed, 10 insertions(+), 10 deletions(-)
diff --git a/README.md b/README.md
index f4b0fac20..6a860f902 100644
--- a/README.md
+++ b/README.md
@@ -1,16 +1,16 @@
# worker-comfyui
-> [ComfyUI](https://github.com/comfyanonymous/ComfyUI) as a serverless API on [RunPod](https://www.runpod.io/)
+> [ComfyUI](https://github.com/comfyanonymous/ComfyUI) as a serverless API on [Runpod](https://www.runpod.io/)
-[](https://console.runpod.io/hub/runpod-workers/worker-comfyui)
+[](https://console.runpod.io/hub/runpod-workers/worker-comfyui)
---
-This project allows you to run ComfyUI workflows as a serverless API endpoint on the RunPod platform. Submit workflows via API calls and receive generated images as base64 strings or S3 URLs.
+This project allows you to run ComfyUI workflows as a serverless API endpoint on the Runpod platform. Submit workflows via API calls and receive generated images as base64 strings or S3 URLs.
## Table of Contents
@@ -26,7 +26,7 @@ This project allows you to run ComfyUI workflows as a serverless API endpoint on
## Quickstart
1. ๐ณ Choose one of the [available Docker images](#available-docker-images) for your serverless endpoint (e.g., `runpod/worker-comfyui:-sd3`).
-2. ๐ Follow the [Deployment Guide](docs/deployment.md) to set up your RunPod template and endpoint.
+2. ๐ Follow the [Deployment Guide](docs/deployment.md) to set up your Runpod template and endpoint.
3. โ๏ธ Optionally configure the worker (e.g., for S3 upload) using environment variables - see the full [Configuration Guide](docs/configuration.md).
4. ๐งช Pick an example workflow from [`test_resources/workflows/`](./test_resources/workflows/) or [get your own](#getting-the-workflow-json).
5. ๐ Follow the [Usage](#usage) steps below to interact with your deployed endpoint.
@@ -45,7 +45,7 @@ Replace `` with the current release tag, check the [releases page](http
## API Specification
-The worker exposes standard RunPod serverless endpoints (`/run`, `/runsync`, `/health`). By default, images are returned as base64 strings. You can configure the worker to upload images to an S3 bucket instead by setting specific environment variables (see [Configuration Guide](docs/configuration.md)).
+The worker exposes standard Runpod serverless endpoints (`/run`, `/runsync`, `/health`). By default, images are returned as base64 strings. You can configure the worker to upload images to an S3 bucket instead by setting specific environment variables (see [Configuration Guide](docs/configuration.md)).
Use the `/runsync` endpoint for synchronous requests that wait for the job to complete and return the result directly. Use the `/run` endpoint for asynchronous requests that return immediately with a job ID; you'll need to poll the `/status` endpoint separately to get the result.
@@ -96,7 +96,7 @@ Each object within the `input.images` array must contain:
> [!NOTE]
>
-> **Size Limits:** RunPod endpoints have request size limits (e.g., 10MB for `/run`, 20MB for `/runsync`). Large base64 input images can exceed these limits. See [RunPod Docs](https://docs.runpod.io/docs/serverless-endpoint-urls).
+> **Size Limits:** Runpod endpoints have request size limits (e.g., 10MB for `/run`, 20MB for `/runsync`). Large base64 input images can exceed these limits. See [Runpod Docs](https://docs.runpod.io/docs/serverless-endpoint-urls).
### Output
@@ -150,9 +150,9 @@ Each object in the `output.images` array has the following structure:
## Usage
-To interact with your deployed RunPod endpoint:
+To interact with your deployed Runpod endpoint:
-1. **Get API Key:** Generate a key in RunPod [User Settings](https://console.runpod.io/serverless/user/settings) (`API Keys` section).
+1. **Get API Key:** Generate a key in Runpod [User Settings](https://console.runpod.io/serverless/user/settings) (`API Keys` section).
2. **Get Endpoint ID:** Find your endpoint ID on the [Serverless Endpoints](https://console.runpod.io/serverless) page or on the `Overview` page of your endpoint.
### Generate Image (Sync Example)
@@ -181,11 +181,11 @@ To get the correct `workflow` JSON for the API:
## SSH Access
-To enable SSH access to the worker, set the `PUBLIC_KEY` environment variable to your SSH public key. The worker will start an SSH server automatically. Make sure to expose **port 22** in your RunPod template so you can connect.
+To enable SSH access to the worker, set the `PUBLIC_KEY` environment variable to your SSH public key. The worker will start an SSH server automatically. Make sure to expose **port 22** in your Runpod template so you can connect.
## Further Documentation
-- **[Deployment Guide](docs/deployment.md):** Detailed steps for deploying on RunPod.
+- **[Deployment Guide](docs/deployment.md):** Detailed steps for deploying on Runpod.
- **[Configuration Guide](docs/configuration.md):** Full list of environment variables (including S3 setup).
- **[Customization Guide](docs/customization.md):** Adding custom models and nodes (Network Volumes, Docker builds).
- **[Development Guide](docs/development.md):** Setting up a local environment for development & testing