1
0
mirror of https://github.com/KubaPro010/fm-dx-webserver.git synced 2026-02-26 22:13:53 +01:00

maps.fmdx.pl integration, various bugfixes, UI changes

This commit is contained in:
NoobishSVK
2024-01-20 23:21:37 +01:00
parent 0cd9661619
commit 135b2c838d
8 changed files with 143 additions and 45 deletions

View File

@@ -3,10 +3,13 @@ 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)
const xdrdPassword = 'changeme'; // xdrd password (optional)
const qthLatitude = '0.0'; // your latitude, useful for maps.fmdx.pl integration
const qthLongitude = '0.0'; // your longitude, useful for maps.fmdx.pl integration
const verboseMode = false; // if true, console will display extra messages
module.exports = {
webServerHost, webServerPort, xdrdServerHost, xdrdServerPort, xdrdPassword, verboseMode
};
webServerHost, webServerPort, xdrdServerHost, xdrdServerPort, xdrdPassword, qthLatitude, qthLongitude, verboseMode
};