Dashdot LogoDash.

From Source

How to install and configure dash. 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
git clone https://github.com/MauriceNino/dashdot ^
  && cd dashdot ^
  && yarn ^
  && yarn build:prod

Start

When done, you can run the dashboard by executing:

sudo -E yarn start

For the most accurate results, it is recommended to start the Cmd as an Admin.

yarn start

Note

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
set DASHDOT_PORT=8080 ^
  && 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
git pull --rebase ^
  && yarn ^
  && yarn build:prod

On this page