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.
- Clone this repository.
> git clone http://github.com/dirslashls/sqlframes-demo.git
- Navigate to sqlframes-demo directory to install dependencies
> yarn install
- Start the local server
> yarn serve
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.
- Build docker image
docker build . -t sqlframes/sqlframes-demo
- Run docker image
docker run -p 49160:8080 -d sqlframes/sqlframes-demo
-
Access the demo from the browser at http://localhost:49160/
-
Terminate the container (once done with the demo)
i. get the container id
docker container ls
ii. terminate the container
docker kill <container-id>