The ROBOKOP UI is web-based with a Flask
server running inside of gunicorn
within a Docker container. The user interface is written using React and the build process uses webpack. This document contains a list of steps that were used to install the software.
https://docs.docker.com/engine/installation/linux/docker-ce/debian/#install-docker-ce-1
docker pull patrickkwang/reasoner-prototype
docker run -it -p 7474:7474 -p 7687:7687 -p 80:80 patrickkwang/reasoner-prototype bash
docker run -it -p 7474:7474 -p 7687:7687 -p 9000:9000 patrickkwang/reasoner-prototype bash
cd protocop-rank
sed -i -e 's/127.0.0.1/$(curl ipinfo.io/ip)/' config.json
npm run webpack
nohup gunicorn -c serverConfig.py python.wsgi:app &
[CTRL-P], [CTRL-Q]
exit