From ac2ada89fe4dd197f8e5b2da7cf864d26d57b20c Mon Sep 17 00:00:00 2001 From: Jeroen Schweitzer Date: Thu, 11 Dec 2025 21:37:48 +0100 Subject: [PATCH] chore: change dev server port to 8123 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- wakeup.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wakeup.sh b/wakeup.sh index 717cdd7..90ff765 100755 --- a/wakeup.sh +++ b/wakeup.sh @@ -43,8 +43,8 @@ LOG_FILE="$LOGS_DIR/server.log" echo -e "${YELLOW}Logs will be written to: ${LOG_FILE}${NC}" # Start the server -echo -e "${GREEN}Starting uvicorn server on http://localhost:8000${NC}" +echo -e "${GREEN}Starting uvicorn server on http://localhost:8123${NC}" echo -e "${YELLOW}Press Ctrl+C to stop the server${NC}" echo "" -uvicorn src.main:app --reload --host 0.0.0.0 --port 8000 2>&1 | tee "$LOG_FILE" +uvicorn src.main:app --reload --host 0.0.0.0 --port 8123 2>&1 | tee "$LOG_FILE"