Demo App

This is the src code of kepler.gl demo app. You can copy this folder out and run it locally.

Pre requirement

1. Install Dependencies

Go to the root directory and install the dependencies using yarn:

yarn bootstrap

Then, go to the examples/demo-app directory and install the dependencies using yarn:

yarn install

2. Environment Variables

Create a .env file at the root directory by copying from .env.template:

cp .env.template .env

Then update the following environment variables in your .env file:

MAPBOX_ACCESS_TOKEN=<your_mapbox_token>
DROPBOX_CLIENT_ID=<your_dropbox_client_id>
MAPBOX_EXPORT_TOKEN=<your_mapbox_export_token>
CARTO_CLIENT_ID=<your_carto_client_id>
FOURSQUARE_CLIENT_ID=<your_foursquare_client_id>
FOURSQUARE_DOMAIN=<your_foursquare_domain>
FOURSQUARE_USER_MAPS_URL=<your_foursquare_user_map_url>

3. Start the app

Last updated

Was this helpful?