Skip to content
Snippets Groups Projects

feat: replace socket.io with websocket

Merged Zdravko Iliev requested to merge 22-feat-replace-socket-io-with-websocket into main
3 files
+ 220
236
Compare changes
  • Side-by-side
  • Inline
Files
3
@@ -5,7 +5,7 @@ import { IConfAgent } from "../interfaces/agent.config.interface";
export const agentConfig = registerAs(
"agent",
(): IConfAgent => ({
agentPeerPort: parseInt(process.env["AGENT_PEER_URL"]!.split(":")[2]),
agentPeerPort: parseInt(process.env["AGENT_PEER_PORT"]!) || 8001,
agentPeerAddress: process.env["AGENT_PEER_URL"]!,
agentName: process.env["AGENT_NAME"]!,
agentKey: process.env["AGENT_KEY"]!,
Loading