diff --git a/agent/src/config.rs b/agent/src/config.rs index d8067f9..eb9924b 100644 --- a/agent/src/config.rs +++ b/agent/src/config.rs @@ -109,7 +109,7 @@ impl Config { // Fall back to environment variables let server_url = std::env::var("GURUCONNECT_SERVER_URL") - .unwrap_or_else(|_| "wss://localhost:3002/ws".to_string()); + .unwrap_or_else(|_| "wss://connect.azcomputerguru.com/ws/agent".to_string()); let api_key = std::env::var("GURUCONNECT_API_KEY") .unwrap_or_else(|_| "dev-key".to_string());