Skip to content

FalkorDB/falkordb-browser

Repository files navigation

Dockerhub Discord Workflow

FalkorDB-Browser

Try Free

FalkorDB-Browser is a visualization UI for FalkorDB.

To see a running demo, check: https://browser.falkordb.com/

image

image

Quick start

Run graph database and browser from one docker container

docker run -p 3000:3000 -p 6379:6379 -it --rm falkordb/falkordb:latest

Open http://localhost:3000 with your browser.

Alternativly you can run the browser from source and database using docker

Run graph database from docker container

docker run -p 6379:6379 -it --rm falkordb/falkordb:latest

Build and run browser from source

  • Clone the git repository git clone git@github.com:FalkorDB/falkordb-browser.git
  • Create .env.local in the clone directory cp .env.local.template .env.local
  • Build the node project npm -i
  • run the server npm run dev

Open http://localhost:3000 with your browser.