Skip to content

Commit c2aa7c5

Browse files
committed
Update documentation.
1 parent edf27bf commit c2aa7c5

File tree

2 files changed

+20
-10
lines changed

2 files changed

+20
-10
lines changed

docs/getting-started.md

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,9 @@ wget https://github.com/brocaar/lora-gateway-bridge/releases/download/VERSION/lo
5656
# unpack
5757
tar zxf lora_gateway_bridge_VERSION_linux_amd64.tar.gz
5858

59-
# move the binary to /usr/local/bin
60-
sudo mv lora-gateway-bridge /usr/local/bin
59+
# move the binary to /opt/lora-gateway-bridge/bin
60+
sudo mkdir -p /opt/lora-gateway-bridge/bin
61+
sudo mv lora-gateway-bridge /opt/lora-gateway-bridge/bin
6162
```
6263

6364
In order to start LoRa Gateway Bridge as a service, create the file
@@ -66,12 +67,12 @@ In order to start LoRa Gateway Bridge as a service, create the file
6667
```
6768
[Unit]
6869
Description=lora-gateway-bridge
69-
After=network.target
70+
After=mosquitto.service
7071
7172
[Service]
7273
User=gatewaybridge
7374
Group=gatewaybridge
74-
ExecStart=/usr/local/bin/lora-gateway-bridge
75+
ExecStart=/opt/lora-gateway-bridge/bin/lora-gateway-bridge
7576
Restart=on-failure
7677
7778
[Install]
@@ -159,8 +160,4 @@ send to the LoRa Gateway Bridge see [topics](topics.md).
159160
## Setup LoRa Server
160161

161162
Now you have your LoRa Gateway bridge instance up and running, it is time to
162-
setup [LoRa Server](https://docs.loraserver.io/loraserver/).
163-
164-
!!! info
165-
You can also use Ansible to setup a complete LoRa Server environment. See
166-
[https://github.com/brocaar/loraserver-setup](https://github.com/brocaar/loraserver-setup).
163+
setup [LoRa Server](https://docs.loraserver.io/loraserver/).

docs/index.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,20 @@ LoRa Gateway Bridge is a service which abstracts the
44
[packet_forwarder UDP protocol](https://github.com/Lora-net/packet_forwarder/blob/master/PROTOCOL.TXT)
55
running on most LoRa gateways into JSON over MQTT. It enables you to use MQTT for
66
receiving data from and sending data to your gateways.
7-
This project is part of [LoRa Server](http://docs.loraserver.io/loraserver/).
7+
8+
## Project components
9+
10+
This project exists out of multiple components
11+
12+
![architecture](https://www.gliffy.com/go/publish/image/11010339/L.png)
13+
14+
* [lora-gateway-bridge](https://github.com/brocaar/lora-gateway-bridge) - converts
15+
the [packet_forwarder protocol](https://github.com/Lora-net/packet_forwarder/blob/master/PROTOCOL.TXT)
16+
to MQTT and back
17+
* [loraserver](https://github.com/brocaar/loraserver) - LoRaWAN network-server
18+
* [lora-app-server](https://github.com/brocaar/lora-app-server) - LoRaWAN
19+
application-server
20+
* lora-controller (todo) - LoRaWAN network-controller
821

922
## Compatibility
1023

0 commit comments

Comments
 (0)