Skip to content
This repository has been archived by the owner on Sep 7, 2022. It is now read-only.
Ryan Birmingham edited this page Jul 25, 2018 · 5 revisions

Setting up the app

  1. Install Node.js
  2. Clone the repository run git clone https://github.com/sharmalab/Datascope.git
  3. Run npm run-script build
  4. Goto http://localhost:3000 from your favorite browser.

Configuring

The configuration files are available at config. There are 4 configuration files:

  1. dataSource.json The dataSource.json file specifies information about the data repository. Refer to the dataSource.json documentation for a detailed description.

  2. dataDescription.json The dataDescription.json file specifies information regarding each attribute in the data. An attribute could be visual, filtering or key. Refer to dataDescription.json documentation

  3. interactiveFilters.json Specifies information for interactive filters that appear on the left side of the dashboard. Refer to interactiveFilters.json documentation

  4. visualization.json Specify the type of visualization that shall appear on the main display panel. Refer to visualization.json documentation

Modify these files to suit your needs.

Running

Run node app.js to get the application server started. Goto localhost:3000 to see your dashboard.

Developing

Refer to the Developer Guide