Skip to content

reductstore/web-console

Repository files navigation

Reduct Web Console

GitHub release (latest SemVer) GitHub Workflow Status

Web console for ReductStore based on React.js and Ant Design

WebConsole Data Browsing

Features

  • Embedded to ReductStore
  • Bucket Management
  • Data Browsing
  • Token authentication
  • Data Browsing

Demo

You can explore it by using a demo server at play.reduct.store. The API token is reductstore.

Documentation

The documentation is available as a set of guides on www.reduct.store.

Running Locally

To run the project locally, you need to specify the URL of the ReductStore instance in the .env file:

REACT_APP_STORAGE_URL=https://play.reduct.store

Then you can run the project with:

npm install
npm start

If you want to run the project with a local ReductStore instance, you need to disable CORS in the browser or on the server. To do this on the server, you can use the RS_CORS_ALLOW_ORIGIN environment variable:

RS_CORS_ALLOW_ORIGIN='*' reductstore