Skip to main content

From Source

Prerequisites

To run this repository from source, you need to have the following installed:

Setup

After that, download and build the project (might take a few minutes)

git clone https://github.com/MauriceNino/dashdot \
&& cd dashdot \
&& yarn \
&& yarn build:prod

When done, you can run the dashboard by executing:

sudo -E yarn start
info

In case you get a speedtest related error, you might have to accept the license before being able to start your dashboard.

For this, run the following in your terminal:

speedtest --accept-license

Configuration

Config options can optionally passed using environment variables.

export DASHDOT_PORT="8080" \
&& sudo -E yarn start

Update

You can update your Dash. instance, by stopping your instance, then running the following commands and in the end, restart your instance.

git pull --rebase \
&& yarn \
&& yarn build:prod