mirror of
https://github.com/dolthub/dolt.git
synced 2026-04-30 11:31:37 -05:00
cd64ee5047
This updates the clients to use Foo instead of NomsFoo
Splore
Splore is a general-purpose debug UI for exploring noms data.
Example
# Create some data
cd "$GOPATH/src/github.com/attic-labs/noms/clients/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-view
cd ../../../cmd/noms-view
go build
./noms-view serve ../../clients/js/splore store="ldb:/tmp/sploretest"
Then, navigate to the URL printed by noms-view, e.g. http://127.0.0.1:12345?store=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.
