mirror of
https://github.com/dolthub/dolt.git
synced 2026-02-11 02:59:34 -06:00
Splore
Splore is a general-purpose debug UI for exploring noms data.
Example
cd $GOPATH/src/github.com/attic-labs/noms/clients/counter
go build
./counter -ldb="/tmp/sploretest" -ds="counter"
./counter -ldb="/tmp/sploretest" -ds="counter"
# Splore requires server to be running
cd ../server
go build
./server -ldb="/tmp/sploretest" &
cd ../splore
./build.py
./node_modules/.bin/http-server
Then, navigate to http://localhost:8080.
Develop
./build.py# only necessary first timeNOMS_SERVER=http://localhost:8000 npm run start
This will start watchify which is continually building a non-minified (and thus debuggable) build.
