NovaSDR Support Forum

General Category => Install problems => Topic started by: Bas ON5HB on 08 Jan 2026, 13:11

Title: Simple update and compile script.
Post by: Bas ON5HB on 08 Jan 2026, 13:11
Hi all,

If you downloaded Nova from github with 'git clone' command, updating is simple.
Here is a simple script to do it for you.

compile.sh (chmod +x) after you made it:

git pull

cargo build -p novasdr-server --release --features "soapysdr,clfft"

cd frontend

npm ci

npm run build

cd ..

exit



That's it.

BTW, I do run the compiling in a seperate directory and only copy dist and binary to the RUN directory, so I make sure nothing is overwritten.