Hi,
For the installation of pre-compiled binaries packaged LORA, we use the commands below as indicated on the documentation :
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 1CE2AFD36DBCCA00
sudo echo "deb https://artifacts.loraserver.io/packages/3.x/deb stable main" | sudo tee /etc/apt/sources.list.d/loraserver.list
sudo apt-get update
sudo apt-get install loraserver
In my case, I would like to compile myself the sources files of each server and installed them, and so here is what I have done for now:
- i cloned the project in /opt/go/src/github.com/brocaar
- To lunch the makefile, I encountered some problem of go-bindata … but in the end i sucess to run the makefile and i obtain this :
- So I generate executable loraserver in /opt/go/src/github.com/brocaar/loraserver/build
- I run ./build/loraserver and i obtain this :
- Knowing that you have to install mosquitto and the database …
My question is what are the next steps to have the file loraserver.toml in /etc/loraserver linked with the loraserver and that we can have the same install when we do :
sudo apt-get install loraserver
- Note i saw that the loraserver.toml file is in
/opt/go/src/github.com/brocaar/loraserver/packaging/files
thanks for your help guys !!!