All Projects → nerves-hub → Nerves_hub_web

nerves-hub / Nerves_hub_web

Licence: apache-2.0
Manage firmware updates for Nerves devices

Programming Languages

elixir
2628 projects

nerves_hub_www

CircleCI Coverage Status

A domain independent back end solution for rolling out software updates to edge devices connected to IP based networking infrastructure.

Project overview and setup

Development environment setup

If you haven't already, make sure that your development environment has Elixir >= 1.7, Erlang 21, and NodeJS.

You'll also need fwup and can follow these installation instructions for your platform if needed.

Additionally you will need to install xdelta3.

The instructions below use asdf which can be installed with the instructions below (copied from asdf-vm.com)

git clone https://github.com/asdf-vm/asdf.git ~/.asdf --branch v0.7.1
# The following steps are for Bash, which is usually the default shell
# If you’re using something else, you probably know the equivalent thing you need to do echo -e '\n. $HOME/.asdf/asdf.sh' >> ~/.bashrc
echo -e '\n. $HOME/.asdf/completions/asdf.bash' >> ~/.bashrc

Here are steps for the NodeJS setup if you're using asdf:

cd nerves_hub_web
asdf plugin-add nodejs
bash ~/.asdf/plugins/nodejs/bin/import-release-team-keyring # this requires gpg to be installed
asdf install $(cat .tool-versions | grep nodejs)

On Debian/Ubuntu, you will also need to install the following packages:

sudo apt install docker-compose inotify-tools

Local development uses the host nerves-hub.org for connections and cert validation. To properly map to your local running server, you'll need to add a host record for it:

echo "127.0.0.1 nerves-hub.org" | sudo tee -a /etc/hosts

First time application setup

  1. Setup database connection

    NervesHub currently runs with Postgres 10.7. For development, you can use a local postgres or use the configured docker image:

    Using Docker

    • Create directory for local data storage: mkdir ~/db
    • Copy dev.env to .env and customize as needed: cp dev.env .env
    • Start the database (may require sudo): docker-compose up -d

    Using local postgres

    • Make sure your postgres is running
    • Copy dev.env to .env with cp dev.env .env
    • Change any of the DB_* variables as needed in your .env. For local running postgres, you would typically use these settings:
    DB_USER=postgres
    DB_PASSWORD="" # in some cases, this might not be blank
    DB_PORT=5432
    
  2. Fetch dependencies: mix do deps.get, compile

  3. Initialize the database: make reset-db

  4. Compile web assets (this only needs to be done once and requires python2): mix assets.install

Starting the application

  • make server - start the server process
  • make iex-server - start the server with the interactive shell

Note: The whole app may need to be compiled the first time you run this, so please be patient

Running Tests

  1. Make sure you've completed your database connection setup
  2. Fetch and compile test dependencies: MIX_ENV=test mix do deps.get, compile
  3. Initialize the test databases: make reset-test-db
  4. Run tests: make test

Client-side SSL device authorization

NervesHub uses Client-side SSL to authorize and identify connected devices. Devices are required to provide a valid certificate that was signed using the trusted certificate authority NervesHub certificate. This certificate should be generated and kept secret and private from Internet-connected servers.

For convenience, we use the pre-generated certificates for dev and test. Production certificates can be generated by following the SSL certificate instructions in test/fixtures/README.md and setting the following environment variables to point to the generated key and certificate paths on the server.

NERVESHUB_SSL_KEY
NERVESHUB_SSL_CERT
NERVESHUB_SSL_CACERT

Tags

Tags are arbitrary strings, such as "stable" or "beta". They can be added to Devices and Firmware.

For a Device to be considered eligible for a given Deployment, it must have all the tags in the Deployment's "tags" condition.

Simulating a device

The nerves_hub is an example OTP application that simulates a device. It will connect to the NervesHub server via a Phoenix Channel and can be used to exercise the server for development and test.

See the nerves_hub/README.md for more information.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].