This is Judgment.
Install npm dependencies:
cd hseling_web_judgment/src/web/static; npm install .; cd ../../../..
You can develop your API without docker environment:
cd hseling_api_judgment/
make run
Build and run composed docker environment:
docker-compose build
docker-compose up
To stop your environment press C-c or:
docker-compose stop
Check if your API container started successfully:
curl http://localhost:5000/healthz
Now you can use curl to check RPC endpoints at localhost:5000:
curl -XPOST -H "Content-type: application/json" -d '{"id": 1, "method": "list_files", "params": []}' http://localhost:5000/rpc/
You can navigate to main web application using this link:
open http://localhost:8000/web/
MIT License. See LICENSE file.