lukejin-dev / loraserver

LoRa Server is an open-source LoRaWAN network-server

Home Page:http://docs.loraserver.io/loraserver/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

LoRa Server

Build Status GoDoc Gitter chat

LoRa Server is an open-source LoRaWAN network-server. It is responsible for handling (and de-duplication) of uplink data received by the gateway(s) and the scheduling of downlink data transmissions.

Project components

architecture

Documentation

Please refer to the documentation for the getting started documentation and implemented features.

Downloads

Building from source

The easiest way to get started is by using the provided docker-compose environment. To start a bash shell within the docker-compose environment, execute the following command from the root of this project:

docker-compose run --rm loraserver bash

A few example commands that you can run:

# run the tests
make test

# compile
make build

# cross-compile for Linux ARM
GOOS=linux GOARCH=arm make build

# cross-compile for Windows AMD64
GOOS=windows BINEXT=.exe GOARCH=amd64 make build

# build the .tar.gz file
make package

# build the .tar.gz file for Linux ARM
GOOS=linux GOARCH=arm make package

# build the .tar.gz file for Windows AMD64
GOOS=windows BINEXT=.exe GOARCH=amd64 make package

Alternatively, you can run the same commands from any working Go environment. As all requirements are vendored, there is no need to go get these. Make sure you have Go 1.7.x installed and that you clone this repository to $GOPATH/src/github.com/brocaar/loraserver.

Contributing

There are a couple of ways to get involved:

When you would like to add new features, please discuss the feature first by creating an issue describing your feature, how you're planning to implement it, what the usecase is etc...

Sponsors

CableLabs acklio

Would you like to support this project too? Please get in touch!

License

LoRa Server is distributed under the MIT license. See also LICENSE.

About

LoRa Server is an open-source LoRaWAN network-server

http://docs.loraserver.io/loraserver/

License:MIT License


Languages

Language:Go 91.9%Language:Protocol Buffer 4.8%Language:Shell 2.6%Language:Makefile 0.6%