In this repository we will try to build and determine relationships between composers
Choose one of the following possibilites:
Using Docker Hub
- run
docker pull musicconnectionmachine/relationshipsg4
- run
docker run -p 3000:3000 -d musicconnectionmachine/relationshipsg4
- go to http://localhost:3000/relationships or http://localhost:3000/reputability in order to see respective JSON file
Using just Docker
- cd into server folder
- run
docker build -t musicconnectionmachine/relationshipsg4 .
- run
docker run -p 3000:3000 -d musicconnectionmachine/relationshipsg4
- go to http://localhost:3000/relationships or http://localhost:3000/reputability in order to see respective JSON file
- download the latest Version
- run
java -mx4g -cp "*" edu.stanford.nlp.pipeline.StanfordCoreNLPServer
in the extracted folder to start the magic on localhost:9000
- cd into server folder (in a new console)
- in config.json, change the
core_nlp_server_url
tohttp://localhost:9000
- run
npm install
to install dependencies - run
npm run start
to start the server on localhost:3000, or alternatively run the ./bin/www file in WebStorm - go to http://localhost:3000/relationships or http://localhost:3000/reputability in order to see respective JSON file
For Mac: In case you don't have wget installed, you can get it via homebrew by running brew install wget