From dc6711b3c5e584546dc5118015a9daa34a1494fd Mon Sep 17 00:00:00 2001 From: Afonso Coutinho Date: Tue, 2 Jun 2026 18:04:37 +0100 Subject: [PATCH] fix: systemd service should serve on port 7000 to match Docker/setup/README (#1297) --- odysseus-ui.service | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/odysseus-ui.service b/odysseus-ui.service index fea4363..835c8cc 100644 --- a/odysseus-ui.service +++ b/odysseus-ui.service @@ -9,7 +9,7 @@ Type=simple # CHANGE THESE to match your user and install path: User=YOURUSER WorkingDirectory=/home/YOURUSER/odysseus-ui -ExecStart=/home/YOURUSER/odysseus-ui/venv/bin/uvicorn app:app --port 8000 --host 0.0.0.0 +ExecStart=/home/YOURUSER/odysseus-ui/venv/bin/uvicorn app:app --port 7000 --host 0.0.0.0 Restart=always RestartSec=3 EnvironmentFile=-/home/YOURUSER/odysseus-ui/.env