Skip to content

Latest commit

 

History

History
54 lines (29 loc) · 845 Bytes

README.md

File metadata and controls

54 lines (29 loc) · 845 Bytes

RDML-Tools

A collection of web applications to visualize, edit and validate RDML files.

Install a local copy for testing

git clone --recursive https://github.com/RDML-consortium/rdml-tools.git rdml_tools

cd rdml_tools

Update your local copy

git pull

git submodule update --recursive

Setup and run the server

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

Setup and run the client

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