globaldothealth / InsightBoard

A dashboard to upload and manage data and generate reports.
MIT License
2 stars 1 forks source link

InsightBoard

Unit and integration tests Documentation Status

Python 3.11 Python 3.12 Python 3.13

A dashboard to upload and manage data and generate reports.

Documentation: ReadTheDocs

Installation

Install InsightBoard using your favourite package manager. For pip this would be:

pip install InsightBoard

You will also want to install ADTL (Another Data Transform Language) to make full use of the parsers, including those supplied with the sample project:

pip install "adtl[parquet] @ git+https://github.com/globaldothealth/adtl"

To launch the dashboard, simply type InsightBoard from the command line. The dashboard should appear in your default web browser. By default the dashboard will be available at http://localhost:8050/.

Getting started

By default InsightBoard will create a folder called InsightBoard/projects in your home directory. This is where all your projects will be stored (you can change this location in the Settings panel of the dashboard).

We recommend that you store each project in a separate (version controlled) git repository within the projects folder. This will allow you to easily share your projects with others and keep track of any changes.

For example, to set up an existing project called my_project in the InsightBoard/projects folder, you can run the following commands from the command line:

cd ~/InsightBoard/projects
git clone <url> my_project

Details of how to create a new project are provided in the accompanying documentation.

Development

See the development pages for more information.