New Sonde Panel for sp9skp/spdxl app.
App is on MIT licensed.
Install node.js v16
https://nodejs.org/en/download/package-manager/#debian-and-ubuntu-based-linux-distributions
then install pm2
npm install pm2 -g
git clone https://github.com/sptq/sonde_panel
cd sonde_panel
npm install
npm run build
cd web
npm install
npm run build
Edit file: ecosystem.config.js
module.exports = {
apps : [{
script: 'dist/main.js',
watch: false,
env: {
"NODE_ENV": "production",
"LAN": "51.3678", //set your lan
"LON": "20.2951", //set your lon
"NUMBERS_OF_SDRS": 4, //set number of sdrs
}
}]
};
pm2 start ecosystem.config.js
App will be available on port 3000