Skip to content

Latest commit

 

History

History
58 lines (39 loc) · 1.37 KB

README.md

File metadata and controls

58 lines (39 loc) · 1.37 KB

SQL Frames is an in-browser in-memory data, visualization and intelligence platform with several building blocks.

This repository contains code to try out SQL Frames and related applications. Refer to SQL Frames + React for a demo of integration with React.


DISCLAIMER - This code is provided only as an example and does not come with any implied guarantee of support. Official support is only available through the commercial licensing of SQL Frames.


Installation

  1. Clone this repository.
> git clone http://github.com/dirslashls/sqlframes-demo.git
  1. Navigate to sqlframes-demo directory to install dependencies
> yarn install
  1. Start the local server
> yarn serve

Docker

It is also try this demo using Docker. After cloning this repository (step 1 above), perform the following steps from within the root directory of the cloned repository.

  1. Build docker image
docker build . -t sqlframes/sqlframes-demo
  1. Run docker image
docker run -p 49160:8080 -d sqlframes/sqlframes-demo
  1. Access the demo from the browser at http://localhost:49160/

  2. Terminate the container (once done with the demo)

     i. get the container id
    
    docker container ls
     ii. terminate the container
    
    docker kill <container-id>