remote control support

This commit is contained in:
NoobishSVK
2024-01-17 22:46:34 +01:00
parent 0a46f1f848
commit fb8c0753d3
7 changed files with 161 additions and 19 deletions
+10
View File
@@ -0,0 +1,10 @@
const webServerHost = '192.168.1.14'; // IP of the web server
const webServerPort = 8080; // web server port
const xdrdServerHost = '192.168.1.15'; // xdrd server iP
const xdrdServerPort = 7373; // xdrd server port
const xdrdPassword = ''; // xdrd password (optional)
module.exports = {
webServerHost, webServerPort, xdrdServerHost, xdrdServerPort, xdrdPassword
};