From 43c09f99228065c511c42640664c7730f1a9abfd Mon Sep 17 00:00:00 2001 From: Jeroen Schweitzer Date: Thu, 18 Dec 2025 20:08:52 +0100 Subject: [PATCH] localhost in wakeup script --- wakeup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wakeup.sh b/wakeup.sh index c35c6bd..dd91740 100755 --- a/wakeup.sh +++ b/wakeup.sh @@ -47,4 +47,4 @@ echo -e "${GREEN}Starting uvicorn server on http://localhost:8777${NC}" echo -e "${YELLOW}Press Ctrl+C to stop the server${NC}" echo "" -uvicorn src.main:app --reload --host 0.0.0.0 --port 8777 2>&1 | tee "$LOG_FILE" +uvicorn src.main:app --reload --host localhost --port 8777 2>&1 | tee "$LOG_FILE"