本机 ComfyUI 开了 Basic Auth(user admin),端口 8182→8188: - hairline/comfyui.py: 默认 URL 8188;所有 httpx 请求带 auth=(user,password) 密码来源 环境变量 COMFYUI_PASSWORD → worker_config.json.comfyui_password → password.txt - password.txt 入 .gitignore(含密码不入 git);worker_config.example 加 comfyui_password - 实现说明文档同步(8188 + Basic Auth) 实测:ping + 实跑一张生发图均通过(带鉴权)。pytest 44 全绿。 Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
27 lines
527 B
Plaintext
27 lines
527 B
Plaintext
venv/
|
||
__pycache__/
|
||
*.pyc
|
||
.env
|
||
|
||
|
||
# 网关配置(含密码,不入 git)
|
||
gateway/config.json
|
||
|
||
# worker 配置(含鉴权密码,不入 git)
|
||
worker_config.json
|
||
|
||
# ComfyUI Basic Auth 密码(不入 git)
|
||
password.txt
|
||
|
||
# worker 运行期文件(PID / 日志)
|
||
worker.pid
|
||
worker.log
|
||
|
||
# SegFormer 模型权重(~323MB,体积过大,不入 git,见 OFFLINE_ASSETS.md)
|
||
hairline/models/face-parsing/model.safetensors
|
||
|
||
# 生成的标注图、测试输出
|
||
static/annotations/*
|
||
!static/annotations/.gitkeep
|
||
tests/output/
|