A collection of web applications to visualize, edit and validate RDML files.
git clone --recursive https://github.com/RDML-consortium/rdml-tools.git rdml_tools
cd rdml_tools
git pull
git submodule update --recursive
The server runs in a terminal
Install the dependencies:
sudo apt install python python-pip
pip install flask flask_cors
Start the server:
cd rdml_tools
python server/server.py
The client requires a different terminal
Install the dependencies:
cd rdml_tools/client
sudo apt install npm
sudo npm install
Start the client:
cd rdml_tools/client
npm run dev