包含: - hair_service_sd: 换发型/换发色算法服务 (端口 8801) - photo_service: LoRA 训练调度服务 (端口 32678) - stable-diffusion-webui: SD WebUI 推理服务 (端口 57860) - kohya_ss_home: 训练环境代码 - meidaojia: 监控测试脚本 - setup.sh: 一键部署脚本 (conda环境恢复 + 配置生成 + 完整性检查) - start_all_services.sh: 启动3个服务 - configure.ini.template: 路径模板化 (BASE_DIR自动推导) - conda_envs/py310.yml: py310 环境定义 大文件 (weights/, models/, data/, conda_envs/*.tar.gz 等) 通过 .gitignore 排除, 由网盘单独上传。
26 lines
638 B
Python
Executable File
26 lines
638 B
Python
Executable File
import os
|
|
from pathlib import Path
|
|
|
|
from modules.paths_internal import script_path
|
|
|
|
|
|
def is_restartable() -> bool:
|
|
"""
|
|
Return True if the webui is restartable (i.e. there is something watching to restart it with)
|
|
"""
|
|
return bool(os.environ.get('SD_WEBUI_RESTART'))
|
|
|
|
|
|
def restart_program() -> None:
|
|
"""creates file tmp/restart and immediately stops the process, which webui.bat/webui.sh interpret as a command to start webui again"""
|
|
|
|
tmpdir = Path(script_path) / "tmp"
|
|
tmpdir.mkdir(parents=True, exist_ok=True)
|
|
(tmpdir / "restart").touch()
|
|
|
|
stop_program()
|
|
|
|
|
|
def stop_program() -> None:
|
|
os._exit(0)
|