Web console for DVID, a distributed, versioned image-oriented datastore. The console allows administration of a DVID server without the need to install additional tools.
This code can be used with DVID in two ways:
-webclient
option with the DVID serve
command.When you want to use the latest release of the console without making any changes.
Unpack it
tar -zxvf dvid-console-<version>.tar.gz
Make sure to set the webClient
in [server]
section of the TOML file when starting the DVID server:
dvid -verbose serve /path/to/config.toml
When you want to use the bleeding edge or make your own modifications
Clone the repository
Make sure you have node and npm installed.
Install all the dependencies with npm
cd /into/the/repository/clone
npm install
test the console
npm run start
build the console
npm run build
Make sure to set the webClient
in [server]
section of the TOML file when starting the DVID server