fix(install): remove redundant Redis/MySQL host hints in wizard step 3

Docker defaults already prefill host.docker.internal; drop duplicate 1Panel install reminders from the form.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
Nexus Deploy
2026-06-06 05:08:55 +08:00
parent 646929ddff
commit 569263dddb
3 changed files with 16 additions and 4 deletions
+1 -1
View File
@@ -135,7 +135,7 @@ def _probe_redis_installed() -> tuple[bool, str]:
if os.environ.get("NEXUS_DOCKER_WRITE_ENV") == "1"
else "127.0.0.1:6379"
)
return False, f"✗ 未检测到 Redis,请在宿主机/1Panel 安装并监听 {hint}"
return False, f"✗ 未检测到 Redis{hint}"
def _parse_dotenv(path: Path) -> dict[str, str]: