lukejin-dev / lora-app-server

LoRa App Server is an open-source application-server for LoRa Server

Home Page:https://docs.loraserver.io/lora-app-server/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

LoRa App Server

Build Status GoDoc Gitter chat

LoRa App Server is an open-source LoRaWAN application-server, compatible with LoRa Server. It is responsible for the node "inventory" part of a LoRaWAN infrastructure, handling of received application payloads and the downlink application payload queue. It comes with a web-interface and API (RESTful JSON and gRPC) and supports authorization by using JWT tokens (optional). Received payloads are published over MQTT and payloads can be enqueued by using MQTT or the API.

Screenshots

applications nodes node details swagger api

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 appserver 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/lora-app-server.

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...

License

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

About

LoRa App Server is an open-source application-server for LoRa Server

https://docs.loraserver.io/lora-app-server/

License:MIT License


Languages

Language:Go 63.5%Language:JavaScript 24.7%Language:Protocol Buffer 6.6%Language:Shell 2.7%Language:HTML 1.3%Language:Makefile 0.6%Language:PLSQL 0.6%Language:CSS 0.0%