From 9db1897af734a75e39c4642b7f81de14b400f310 Mon Sep 17 00:00:00 2001 From: nicoboy Date: Mon, 8 Jun 2026 18:32:58 +0200 Subject: [PATCH] fix: chemin absolu uvicorn pour systemd MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit systemd n'inclut pas ~/.local/bin dans PATH, uvicorn non trouvé (exit 127). Co-Authored-By: Claude Sonnet 4.6 --- start.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/start.sh b/start.sh index 3bb35e8..28d8173 100755 --- a/start.sh +++ b/start.sh @@ -66,4 +66,4 @@ sleep 2 # 5. Lancer WireClaw echo "Lancement WireClaw..." cd ~/wireclaw -uvicorn web_server:app --host 0.0.0.0 --port 8765 +/home/nicoboy/.local/bin/uvicorn web_server:app --host 0.0.0.0 --port 8765