The aim of this project is to provide a simple graphical user interface to show the Health Status of submarine cables connected to Mauritius.
This project is inspired by the beautiful website baliseacable.com
The data source is yet to be made available. It is expected to be in the following format :
// file: all-servers.json
{
LION : <SpeedtestResult>,
MARS: <SpeedtestResult>,
SAFE1:<SpeedtestResult>,
SAFE2:<SpeedtestResult>,
SAFE3:<SpeedtestResult>
}
// Where Speedtest result has the following signature
Interface SpeedtestResult {
timestamp: '',
upload: '',
download: '',
ping: ''
}
npm install
npm run serve
npm run build