mirror of
https://github.com/dolthub/dolt.git
synced 2026-02-09 03:09:12 -06:00
- Display the prolly-tree for Blobs - Fix fallout from sha1-xxx to xxxx - Make the hashes links to splore rooted at that hash Fixes #2218 Fixes #1321
Splore
Splore is a general-purpose debug UI for exploring noms data.
Example
# Create some data
cd "$GOPATH/src/github.com/attic-labs/noms/samples/go/counter"
go build
./counter ldb:/tmp/sploretest:counter
./counter ldb:/tmp/sploretest:counter
# Build Splore
cd ../../js/splore
./build.py
# Launch Splore with noms-ui
cd ../../../cmd/noms-ui
go build
./noms-ui ../../samples/js/splore db="ldb:/tmp/sploretest"
Then, navigate to the URL printed by noms-ui, e.g. http://127.0.0.1:12345?db=xyz.
Develop
Same as the example, but:
./build.pyis only necessary the first time.- Also run
npm run start, to continually build a non-minified (and thus debuggable) build.
