From 3f9bdc70ee39f07894a2353abdb0926d9f31ce40 Mon Sep 17 00:00:00 2001 From: Robin Huang Date: Thu, 14 May 2026 10:32:40 -0700 Subject: [PATCH] Add careers link to README and startup log (#13897) --- README.md | 2 ++ server.py | 3 +++ 2 files changed, 5 insertions(+) diff --git a/README.md b/README.md index 0fd317d0a..64d494f20 100644 --- a/README.md +++ b/README.md @@ -429,6 +429,8 @@ Use `--tls-keyfile key.pem --tls-certfile cert.pem` to enable TLS/SSL, the app w See also: [https://www.comfy.org/](https://www.comfy.org/) +> _psst — we're hiring!_ Help build ComfyUI: [comfy.org/careers](https://www.comfy.org/careers) + ## Frontend Development As of August 15, 2024, we have transitioned to a new frontend, which is now hosted in a separate repository: [ComfyUI Frontend](https://github.com/Comfy-Org/ComfyUI_frontend). This repository now hosts the compiled JS (from TS/Vue) under the `web/` directory. diff --git a/server.py b/server.py index 2f3b438bb..18fb4064e 100644 --- a/server.py +++ b/server.py @@ -1266,6 +1266,9 @@ class PromptServer(): if verbose: logging.info("To see the GUI go to: {}://{}:{}".format(scheme, address_print, port)) + if verbose: + logging.info("psst — we're hiring! https://www.comfy.org/careers") + if call_on_start is not None: call_on_start(scheme, self.address, self.port)