https://github.com/thethingsnetwork/lorawan-stack-legacy
The Things Network Stack V2 API
https://github.com/thethingsnetwork/lorawan-stack-legacy
Last synced: 5 months ago
JSON representation
The Things Network Stack V2 API
- Host: GitHub
- URL: https://github.com/thethingsnetwork/lorawan-stack-legacy
- Owner: TheThingsNetwork
- License: apache-2.0
- Created: 2018-09-07T14:07:30.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2024-03-20T13:33:23.000Z (over 2 years ago)
- Last Synced: 2025-03-28T09:51:29.001Z (about 1 year ago)
- Language: Go
- Homepage:
- Size: 116 KB
- Stars: 0
- Watchers: 10
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: CODEOWNERS
Awesome Lists containing this project
README
# The Things Network Stack V2 Legacy API
This repository contains legacy The Things Network V2 API for compatibility purposes.
## Install
Make sure your [Go environment](https://github.com/TheThingsNetwork/lorawan-stack/blob/master/DEVELOPMENT.md#getting-started-with-go-development) is set up.
```bash
$ git clone git@github.com:TheThingsNetwork/lorawan-stack-legacy.git $(go env GOPATH)/go.thethings.network/lorawan-stack-legacy
$ cd $(go env GOPATH)/go.thethings.network/lorawan-stack-legacy
```
Also, make sure you have [`protoc`](https://github.com/protocolbuffers/protobuf#protocol-compiler-installation) installed.
## Regenerate
The contents of this repository is not meant to be edited, considering it is meant to stay compatible with older software.
You can find in this repository the protocol buffer files that define the API, and the generated Go files.
To regenerate the Go files, use the following commands:
```bash
$ make deps # Get dependencies
$ make clean # Removes generated protos
$ make protos # Generates the protos
```