Add careers link to README and startup log

This commit is contained in:
Robin Huang 2026-05-14 10:08:00 -07:00
parent 1f28908d6e
commit 1ddd9905bc
2 changed files with 5 additions and 0 deletions

View File

@ -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.

View File

@ -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)