DOMINO as a web-based service is avaliable here.
The original standalone version of DOMINO is available here
- node.js
- mongoDB server
- Dependency proejcts: ami_plugins and DOMINO
To run a domino server perform the following steps:
- Download and install Domino standalone tool from here
- Clone domino_web:
git clone https://github.com/hag007/domino_web.git
cd domino_web
- Create a file named
config.js
and insert the following lines:
const conf_server = {
IP_ADDRESS: "your DNS/server IP",
DOMINO_PYTHON_ENV: "/path/to/domino-env",
AMI_PLUGINS_PYTHON_ENV: "/path/to/AMI-PLUGINS/",
DOMINO_PATH: "/path/to/DOMINO/",
PORT: 1234
};
module.exports = { conf: conf_server };
- Complete the setup process
npm install # Install dependencies
npm run build # Build the client side: Needs to be done each time client side files are modified
node server.js # run the server