diff --git a/wakeup.sh b/wakeup.sh index dd91740..20e74d9 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:8777${NC}" +echo -e "${GREEN}Starting uvicorn server on http://tower-of-joy:8777${NC}" echo -e "${YELLOW}Press Ctrl+C to stop the server${NC}" echo "" -uvicorn src.main:app --reload --host localhost --port 8777 2>&1 | tee "$LOG_FILE" +uvicorn src.main:app --reload --host 0.0.0.0 --port 8777 2>&1 | tee "$LOG_FILE"