Tested on Ubuntu 16.04, NodeJs v4.2.6, NPM 6.4.1, mysql v14.14.
This repository provides data and code as follows.
client/ # client side
server/ # server side
data/ # contains data
algA/ # figures for algorithm A
algB/ # figures for algorithm B
algC/ # figures for algorithm C
config.js # [YOU NEED TO FILL IN THIS!!!]
-
First install NodeJs, NPM, MYSQL.
-
Intall nodejs modules
cd client npm install bash ./build.sh cd server npm install
-
Put your data under
data
-
Create a MYSQL table
cd server/mysql mysql -u root -p < create_table.sql
-
Fill in
config.js
cp config.js.template config.js vim config.js [FILL IN THE PARTS WITH UPPER LETTERS]
-
Start
cd server npm start
-
Results will be saved to the MYSQL
cd server/mysql mysql -u root -p < get_results.sql
MIT Licence
- [May 17, 2020] Code released.