Installation
Get the Database
If you have a connection you want to work with you are welcome to. For this demo we have used a database that contains 3 very common analytic sample datasets: AdventureWorks, Ssakila, and Chinook.
For convenience we have created a container where these 3 datasets are installed into a PostgreSQL database.
docker pull restbi/example-db:latest
Run the image:
docker run -d -p 5433:5432 restbi/example-db:latest
Start Your RestBI Server
If you havnt already installed RestBI head to the Quick Start to do this.
docker run -d -p 3000:3000 restbi/restbi-server:latest
Install the Demo Application
Clone the git repo into a directory on your computer.
git clone https://github.com/restbi/example-report-builder.git
Install the dependencies
npm install
Run the application
npm start
Last updated