Skip to content

janelia-flyem/dvid-console

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

dvid-console Picture

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:

  • Specify the repo location using the -webclient option with the DVID servecommand.
  • Compile the entire repository into gzipped data that is included in dvid executable. This allows a single DVID executable to have an embedded console and is the default way that DVID is built.

Usage

Quick Install

When you want to use the latest release of the console without making any changes.

  • Make sure you have DVID installed and configured

  • Download the dvid-console-<version>.tar.gz file from the [latest release] (https://github.com/janelia-flyem/dvid-console/releases/latest)

  • 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

For Developers

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