This is an advanced data app example that uses the Zoomdata SDK v2.0 to query the Lending Club datasource hosted by a Zoomdata instance at pubsdk.zoomdata.com.
Try this application live at https://developer.zoomdata.com/sample/acmelending. Use the following credentials:
user: zoomdata
pass: zoomdata
Use the 2.2 branch in repo when pointing to Zoomdata v2.2. Use the master branch when pointing to Zoomdata v2.3.0.
You must have node installed on your computer. Clone this repo and install the dependencies:
git clone https://github.com/Zoomdata/zd-data-app-01
cd zd-data-app-01
npm install
npm start
In the browser go to: http://localhost:8090
Set the production flag to true on config/index.js. This flag will make the app point to the ZD production.
Generate the minified public/bundle.js file with the following command:
NODE_ENV=production webpack -p
or
env NODE_ENV=production webpack -p