ChirpStack open-source LoRaWAN Network Server
Go to file
Orne Brocaar 64b2e82244
Some checks failed
CI / tests (postgres) (push) Has been cancelled
CI / tests (sqlite) (push) Has been cancelled
CI / dist (postgres) (push) Has been cancelled
CI / dist (sqlite) (push) Has been cancelled
Bump version to 4.11.0-test.1
2024-12-11 09:33:27 +00:00
.cargo Revert "Use mold linker for development." 2024-05-09 10:53:50 +01:00
.docker-compose/postgresql/initdb Initial commit. 2022-04-06 21:18:32 +01:00
.github Update nix version to 24.11. 2024-12-05 11:20:20 +00:00
api Bump version to 4.11.0-test.1 2024-12-11 09:33:27 +00:00
backend Bump version to 4.11.0-test.1 2024-12-11 09:33:27 +00:00
chirpstack Bump version to 4.11.0-test.1 2024-12-11 09:33:27 +00:00
chirpstack-integration Bump version to 4.11.0-test.1 2024-12-11 09:33:27 +00:00
cross Implement support for SQLite database backend. (#418) (#500) 2024-08-26 13:22:35 +01:00
examples Bump golang.org/x/net from 0.19.0 to 0.23.0 in /examples/frame_log/go (#405) 2024-05-02 10:38:59 +01:00
lrwn Bump version to 4.11.0-test.1 2024-12-11 09:33:27 +00:00
lrwn-filters Bump version to 4.11.0-test.1 2024-12-11 09:33:27 +00:00
ui Bump version to 4.11.0-test.1 2024-12-11 09:33:27 +00:00
.dockerignore Implement fully static AMD64 build. 2023-05-30 12:13:52 +01:00
.env Add dotenv for test dependency config. 2023-05-30 12:13:52 +01:00
.gitattributes Update .gitattributes. 2022-04-06 21:50:23 +01:00
.gitignore Implement support for SQLite database backend. (#418) (#500) 2024-08-26 13:22:35 +01:00
Cargo.lock Bump version to 4.11.0-test.1 2024-12-11 09:33:27 +00:00
Cargo.toml Update deadpool-redis. 2024-08-08 16:53:07 +01:00
Cross.toml Implement fully static ARMv7 build. 2023-05-30 12:13:52 +01:00
docker-compose.yml api: Remove generated API files from repo + update build. 2024-04-01 14:27:15 +01:00
Dockerfile Update base image version. 2024-12-06 09:54:54 +00:00
Dockerfile-devel Refactor build scripts for cross-rs based cross compiling. 2023-05-30 12:13:52 +01:00
LICENSE Initial commit. 2022-04-06 21:18:32 +01:00
Makefile Remove old build config. 2024-12-10 12:48:52 +00:00
README.md Implement support for SQLite database backend. (#418) (#500) 2024-08-26 13:22:35 +01:00
rust-toolchain.toml Update Rust, Diesel CLI and dev. environment. 2024-06-18 13:56:31 +01:00
shell.nix Update nix version to 24.11. 2024-12-05 11:20:20 +00:00

ChirpStack open-source LoRaWAN(R) Network Server

CI

ChirpStack is an open-source LoRaWAN(R) Network Server which can be used to set up LoRaWAN networks. ChirpStack provides a web-interface for the management of gateways, devices and tenants as well to set up data integrations with the major cloud providers, databases and services commonly used for handling device data. ChirpStack provides a gRPC based API that can be used to integrate or extend ChirpStack.

Documentation and binaries

Please refer to the ChirpStack website for documentation and pre-compiled binaries.

Building from source

Requirements

Building ChirpStack requires:

Nix

Nix is used for setting up the development environment which is used for local development and for creating the binaries.

If you do not have Nix installed and do not wish to install it, then you can use the provided Docker Compose based Nix environment. To start this environment execute the following command:

make docker-devshell

Note: You will be able to run the test commands and run cargo build, but cross-compiling will not work within this environment (because it would try start Docker within Docker).

Docker

Docker is used by cross-rs for cross-compiling, as well as some of the make commands.

Starting the development shell

Run the following command to start the development shell:

nix-shell

Or if you do not have Nix installed, execute the following command:

make docker-devshell

Building the UI

To build the ChirpStack UI, execute the following command:

make build-ui

Running ChirpStack tests

Start required services

ChirpStack requires several services like PostgresQL, Redis, Mosquitto, ... to be running before you can run the tests. You need to start these services manually if you started the development shell using nix-shell:

docker compose up -d

Run tests

Run the following command to run the ChirpStack tests:

# Test (with PostgresQL database backend)
make test

# Test with SQLite database backend
DATABASE=sqlite make test

Building ChirpStack binaries

Before compiling the binaries, you need to install some additional development tools (for cross-compiling, packaging, e.d.). Execute the following command:

make dev-dependencies

Run the following command within the ./chirpstack sub-folder:

# Build AMD64 debug build (optimized for build speed)
make debug-amd64

# Build AMD64 release build (optimized for performance and binary size)
make release-amd64

# Build all packages (all targets, .deb, .rpm and .tar.gz files)
make dist

By default the above commands will build ChirpStack with the PostgresQL database database backend. Set the DATABASE=sqlite env. variable to compile ChirpStack with the SQLite database backend.

Database migrations

To create a new database migration, execute:

make migration-generate NAME=test-migration

To apply migrations, execute:

make migration-run

To revert a migration, execute:

make migration-revert

By default the above commands will execute the migration commands using the PostgresQL database backend. To execute migration commands for the SQLite database backend, set the DATABASE=sqlite env. variable.

License

ChirpStack Network Server is distributed under the MIT license. See also LICENSE.