From bcf380e1fa93808442d3c286e8b974375b00b977 Mon Sep 17 00:00:00 2001 From: Nicole Rappe Date: Mon, 7 Apr 2025 20:38:29 -0600 Subject: [PATCH] Changed Agent URL Variable --- Data/Agent/borealis-agent.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Data/Agent/borealis-agent.py b/Data/Agent/borealis-agent.py index 427e154..c88a5f3 100644 --- a/Data/Agent/borealis-agent.py +++ b/Data/Agent/borealis-agent.py @@ -12,8 +12,8 @@ from PyQt5 import QtCore, QtGui, QtWidgets from PIL import ImageGrab # ---------------- Configuration ---------------- -# SERVER_URL = "https://borealis.bunny-lab.io" # Production URL Example -SERVER_URL = "http://localhost:5000" +SERVER_URL = "https://borealis.bunny-lab.io" # Production URL Example +#SERVER_URL = "http://localhost:5000" # Development URL Example CHECKIN_ENDPOINT = f"{SERVER_URL}/api/agent/checkin" CONFIG_ENDPOINT = f"{SERVER_URL}/api/agent/config" DATA_POST_ENDPOINT = f"{SERVER_URL}/api/agent/data"