From d17f6e14f8a7a653f028de1093775f3e28335b44 Mon Sep 17 00:00:00 2001 From: ZGaetano Date: Sun, 3 May 2026 23:50:05 -0400 Subject: [PATCH] Add documentation, environment config, and project files: default.json --- config/default.json | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 config/default.json diff --git a/config/default.json b/config/default.json new file mode 100644 index 0000000..c57549f --- /dev/null +++ b/config/default.json @@ -0,0 +1,26 @@ +{ + "rossTalk": { + "host": "192.168.1.100", + "port": 7788, + "reconnectInterval": 5000, + "heartbeatInterval": 30000, + "connectionTimeout": 10000 + }, + "mcp": { + "serverName": "ross-ultrix-mcp", + "version": "1.0.0", + "port": 3000 + }, + "logging": { + "level": "info", + "format": "combined", + "directory": "./logs", + "maxFiles": 10, + "maxSize": "10MB" + }, + "health": { + "enabled": true, + "port": 3000, + "endpoint": "/health" + } +}