From dc6be230ce3017af1a32b7c7935179356b23d55e Mon Sep 17 00:00:00 2001 From: nesquena-hermes Date: Sat, 4 Apr 2026 11:29:34 -0700 Subject: [PATCH] fix: start.sh state dir default webui-mvp -> webui (#73) Matches the fix applied to api/config.py in PR #72. Both defaults now consistently use ~/.hermes/webui for a clean generic install. HERMES_WEBUI_STATE_DIR env var still overrides for anyone running multiple instances. Co-authored-by: Nathan Esquenazi --- start.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/start.sh b/start.sh index f1744ec..38a1326 100755 --- a/start.sh +++ b/start.sh @@ -198,7 +198,7 @@ hdr "Starting Hermes Web UI..." LOG="/tmp/hermes-webui-${PORT}.log" export HERMES_WEBUI_HOST="${HERMES_WEBUI_HOST:-127.0.0.1}" -export HERMES_WEBUI_STATE_DIR="${HERMES_WEBUI_STATE_DIR:-${HERMES_HOME}/webui-mvp}" +export HERMES_WEBUI_STATE_DIR="${HERMES_WEBUI_STATE_DIR:-${HERMES_HOME}/webui}" nohup "${PYTHON}" "${REPO_ROOT}/server.py" \ > "${LOG}" 2>&1 &