fix: systemd service should serve on port 7000 to match Docker/setup/README (#1297)

This commit is contained in:
Afonso Coutinho
2026-06-02 18:04:37 +01:00
committed by GitHub
parent 1a763b0539
commit dc6711b3c5

View File

@@ -9,7 +9,7 @@ Type=simple
# CHANGE THESE to match your user and install path: # CHANGE THESE to match your user and install path:
User=YOURUSER User=YOURUSER
WorkingDirectory=/home/YOURUSER/odysseus-ui 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 Restart=always
RestartSec=3 RestartSec=3
EnvironmentFile=-/home/YOURUSER/odysseus-ui/.env EnvironmentFile=-/home/YOURUSER/odysseus-ui/.env