For both development and production the environment variables can be set at public/env.js:
# public/env.js
window.ENV = {
# the URL of the remote MDB instance
MDB_URL: "http://localhost:1234",
# used for node search and label visualization
SEARCH_PROPERTIES: ["name"],
};After the build, this can be modified at any time in the build directory at dist/env.js. This will be particularly useful when you would like to deploy the interface directly from the one provided in the MillenniumDB server.
This project uses pnpm:
Install dependencies:
pnpm installStart the development serveR:
pnpm run devInstall dependencies:
pnpm installStart the development serveR:
pnpm run build