From e01b81b3b9cc97c2927406b10e112e108b9c6e00 Mon Sep 17 00:00:00 2001 From: Athanasius Date: Sun, 13 Mar 2022 15:57:41 +0000 Subject: [PATCH] monitor: Move eddn-config.js to only an example, and make it such We won't want the live config copied in/overwritten on each invocation of 'python setup.py install'. --- .../monitor/js/{eddn-config.js => EXAMPLE-eddn-config.js} | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) rename contrib/monitor/js/{eddn-config.js => EXAMPLE-eddn-config.js} (71%) diff --git a/contrib/monitor/js/eddn-config.js b/contrib/monitor/js/EXAMPLE-eddn-config.js similarity index 71% rename from contrib/monitor/js/eddn-config.js rename to contrib/monitor/js/EXAMPLE-eddn-config.js index 16b2a97..432cbe8 100644 --- a/contrib/monitor/js/eddn-config.js +++ b/contrib/monitor/js/EXAMPLE-eddn-config.js @@ -3,8 +3,8 @@ var eddn_config = { updateInterval: 60000, - eddn_host: 'eddn.miggy.org', - monitorEndPoint: 'https://eddn.miggy.org/dev/monitor/', + eddn_host: 'eddn.edcd.io', + monitorEndPoint: 'https://eddn.edcd.io/dev/monitor/', gatewayStats: '/dev/stats/', @@ -12,11 +12,11 @@ var eddn_config = { relayBottlePort: 9110, gateways: [ - 'eddn.miggy.org' + 'eddn.edcd.io' ], //TODO: Must find a way to bind them to monitor relays: [ - 'eddn.miggy.org' + 'eddn.edcd.io' ] //TODO: Must find a way to bind them to monitor };