mirror of
https://github.com/dolthub/dolt.git
synced 2026-02-05 10:31:30 -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
PYTHONPATH=$GOPATH/src/github.com/attic-labs/noms/tools python build.py
./node_modules/.bin/http-server
Then, navigate to http://localhost:8080.
Develop
./link.sh# only necessary first time, or if changes have happened injsnpm install# only necessary first time, or if deps have changedNOMS_SERVER=http://localhost:8000 npm run start
This will start watchify which is continually building a non-minified (and thus debuggable) build.
