NebraLtd / hm-config

Helium Miner Config Container
https://nebra.io/hnt
MIT License
12 stars 20 forks source link

hm-config: Helium Miner Config Container

This repository contains the Dockerfile, basic scripts and additional libraries required for the BTLE Application tool. helium/gateway-config is the upstream repo that this is built against.

Directory layout:

Local development environment

Running locally:

PYTHONPATH=./ MINER_KEYS_FILEPATH=./example/onboarding_key.txt ETH0_MAC_ADDRESS_PATH=./example/eth0_mac_address.txt python minerconfig

Because the stack is tightly intertwined with Balena, the easiest way to test the code base on your own Raspberry Pi in your own Balena project. The code has been developped and tested with the Raspberry Pi 3 B+. There are a few ways to build this app:

  1. Cross-compile locally and deploy to Balena: balena deploy dev-XXX --build (preferred method)
  2. Cross-compile locally only: docker buildx build --platform linux/arm64 .
  3. ARM build on Balena: git push balena YourLocalBranch:master (deprecated)
  4. Build directly on device with local mode: balena push local (over 10 hours)
balena deploy hm-diag --build --debug

Balena setup

You can now push your changes using the following command:

$ git push balena YourLocalBranch:master

Setting up Python on Ubuntu

These are optional instructions to have an Ubuntu environment closely mimic production.

  1. Install pyenv: curl https://pyenv.run | bash
  2. Install Python 3.7.3 dependency:
sudo apt-get install -y libffi-dev libssl-dev make build-essential libssl-dev zlib1g-dev libbz2-dev \
    libreadline-dev libsqlite3-dev wget curl llvm libncurses5-dev libncursesw5-dev \
    xz-utils tk-dev libffi-dev liblzma-dev python-openssl git \
     libdbus-glib-1-dev libgirepository1.0-dev python3-gi bluez
  1. Install Python 3.9.16: pyenv install 3.9.16 && pyenv local 3.9.16
  2. Check correctly installed: python -V
  3. Setup virtualenv: python3 -m venv venv && source venv/bin/activate
  4. Install python wheel package: python3 -m pip install wheel
  5. Install poetry package: python3 -m pip install poetry
  6. Install dependencies: poetry install --with dev

Testing

Assuming virtualenv has been activated, execute the following command to run the tests:

poetry install --with dev
poetry run pytest --cov=gatewayconfig --cov=lib --cov-fail-under=70

Generating protobufs

Pre built containers

This repo automatically builds docker containers and uploads them to two repositories for easy access:

The images are tagged using the docker long and short commit SHAs for that release. The current version deployed to miners can be found in the helium-miner-software repo.