-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.js.example
28 lines (21 loc) · 1.08 KB
/
settings.js.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
//Title shown at the top of the page (such as club callsign)
exports.title="VE7SCC";
//Your location
exports.gpsHome=[-122.807727,49.2480338];
//How long recent contacts remain highlighted (in milliseconds)
exports.recentDelay=60000;
//Location of N1MM+ database files
//The default setting works with the N1MM+ defaults
exports.n1mm_db=process.env.USERPROFILE+"\\Documents\\N1MM Logger+\\Databases\\ham.s3db";
exports.n1mm_admin_db=process.env.USERPROFILE+"\\Documents\\N1MM Admin.s3db";
//Server port to listen on
exports.listenPort=3000;
//QRZ.com Login info
//If you have a paid QRZ account, set this to use it for geolocation
//exports.qrz_user="qrz_username";
//exports.qrz_pass="qrz_password";
//Optionally, you can use a base64 encoded password as shown here (to mitigate casual glancing at the password)
//exports.qrz_pass=new Buffer('Base64EncodedPasswordHere','base64').toString();
//Or, you can have it prompt for the password on startup to avoid saving it at all
//var readlineSync=require('readline-sync');
//exports.qrz_pass=readlineSync.question('QRZ Password:',{hideEchoBack:true});